source: XmlTools2/trunk/multidimvar.h@ 959

Last change on this file since 959 was 906, checked in by s10k, 11 years ago
File size: 469 bytes
RevLine 
[906]1#ifndef MULTIDIMVAR_H
2#define MULTIDIMVAR_H
3
4#include "utilxmltools.h"
5
6class MultiDimVar
7{
8public:
9 QList<double> multiDimValue; // current this class only supports doubles.
10 MultiDimVar(QString multiDimValue);
11 MultiDimVar(int dim);
12 static MultiDimVar sum(const MultiDimVar &val1, const MultiDimVar &val2);
13 static MultiDimVar sub(const MultiDimVar &val1, const MultiDimVar &val2);
14 QString toString();
15};
16
17#endif // MULTIDIMVAR_H
Note: See TracBrowser for help on using the repository browser.