#include <HxRegValue.h>
Public Methods | |
| HxRegValue () | |
| Constructor. More... | |
| HxRegValue (HxString name, const HxRegData &data) | |
| Constructor. More... | |
| ~HxRegValue () | |
| Destructor. More... | |
| HxString | getName () const |
| Get name. More... | |
| HxRegData | getData () const |
| Get data. More... | |
| void | setData (const HxRegData &data) |
| Set data. More... | |
| int | operator< (const HxRegValue &rhs) const |
| Compare names. More... | |
| STD_OSTREAM & | put (STD_OSTREAM &, int cCode=0) const |
| Put on stream. More... | |
|
|
Constructor.
00053 : _data(0)
00054 {
00055 }
|
|
||||||||||||
|
Constructor.
00059 : _name(name), _data(data)
00060 {
00061 }
|
|
|
Destructor.
00065 {
00066 }
|
|
|
Get name.
00070 {
00071 return _name;
00072 }
|
|
|
Get data.
00076 {
00077 return _data;
00078 }
|
|
|
Set data.
00082 {
00083 _data = data;
00084 }
|
|
|
Compare names.
00088 {
00089 return _name < rhs._name;
00090 }
|
|
||||||||||||
|
Put on stream.
|
1.2.12 written by Dimitri van Heesch,
© 1997-2001