repo.or.cz
/
chuck-blob.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
*** empty log message ***
[chuck-blob.git]
/
design
/
analysis
/
fc-InfoBlob.ck
blob
413d747d10ce94edcf4e2fd1c5786cee8da4cf27
1
2
class InfoBlob
3
{
4
// last time
5
time when;
6
7
// public!
8
int iVector[];
9
int iMatrix[][];
10
float fVector[];
11
float fMatrix[][];
12
complex cVector[];
13
complex cMatrix[][];
14
15
// user object
16
Object user;
17
18
// deep copy with data
19
InfoBlock clone();
20
21
// secret (C++ only), UAna that made this
22
int origin;
23
}