12
friend std::ostream &operator<<(std::ostream &os, const Value &v){
14
std::cout << "t = " << v.t << ": [";
16
for (int i=0;i<v.size;i++)
17
std::cout << " " << v.values[i];
26
Value(const Value &v);
33
char *Label (int pos);
35
void Set (int pos, double val);
36
void SetTime (double t);
37
void SetLabel (int pos, const char *string);