| 89 |
void setname(const std::string & n) {name=n;} |
void setname(const std::string & n) {name=n;} |
| 90 |
std::string getname(void) const {return name;} |
std::string getname(void) const {return name;} |
| 91 |
|
|
| 92 |
|
private: |
| 93 |
|
std::string & autoname_prefix(void); |
| 94 |
|
|
| 95 |
// member variables |
// member variables |
| 96 |
protected: |
protected: |
| 97 |
unsigned serial; |
unsigned serial; /**< Unique serial number for comparing symbolic indices */ |
| 98 |
bool symbolic; /**< Is index symbolic? */ |
bool symbolic; /**< Is index symbolic? */ |
| 99 |
std::string name; /**< Symbolic name (if symbolic == true) */ |
std::string name; /**< Symbolic name (if symbolic == true) */ |
| 100 |
unsigned value; /**< Numeric value (if symbolic == false) */ |
unsigned value; /**< Numeric value (if symbolic == false) */ |