00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef __VALUE_H
00015 #define __VALUE_H
00016
00017 #include <string>
00018 #include <map>
00019 #include <list>
00020 using namespace std;
00021
00022
00023
00024 class value {
00025 string name;
00026 int nr;
00027 public:
00028 value();
00029
00030
00031 const string getName() const;
00032 void setName(const string v);
00033
00034
00035 const int getNr() const;
00036 void setNr(const int v);
00037 int operator<(const value &ck) const;
00038
00039 void xml(ofstream &f, int l=0, int r=0);
00040 };
00041
00042 #endif // __VALUE_H