#include <paramsd.h>
List of all members.
Detailed Description
Definition at line 46 of file paramsd.h.
Constructor & Destructor Documentation
ParamContent::ParamContent |
( |
| ) |
|
|
inline |
Definition at line 58 of file paramsd.cpp.
{
my_id_ = nrParams;
nrParams++;
sIt = it;
vcMap[my_id_] = this;
}
Definition at line 66 of file paramsd.cpp.
{
my_id_ = nrParams;
nrParams++;
iIt = it;
vcMap[my_id_] = this;
}
Definition at line 74 of file paramsd.cpp.
{
my_id_ = nrParams;
nrParams++;
bIt = it;
vcMap[my_id_] = this;
}
Definition at line 82 of file paramsd.cpp.
{
my_id_ = nrParams;
nrParams++;
dIt = it;
vcMap[my_id_] = this;
}
Member Function Documentation
int ParamContent::Compare |
( |
const void * |
v1, |
|
|
const void * |
v2 |
|
) |
| |
|
static |
const char * ParamContent::GetDescription |
( |
| ) |
const |
int ParamContent::GetId |
( |
| ) |
|
|
inline |
const char * ParamContent::GetName |
( |
| ) |
const |
Definition at line 116 of file paramsd.cpp.
{
else
return "ERROR: ParamContent::GetName()";
}
const char * ParamContent::GetValue |
( |
| ) |
const |
Definition at line 135 of file paramsd.cpp.
{
char* msg = new char[1024];
sprintf(msg,
"%d", ((
inT32) *(iIt)));
sprintf(msg,
"%d", ((
BOOL8) * (bIt)));
sprintf(msg, "%g", ((double) * (dIt)));
sprintf(msg,
"%s", ((
STRING) * (sIt)).
string());
} else {
sprintf(msg, "Null");
}
}
return msg;
}
bool ParamContent::HasChanged |
( |
| ) |
|
|
inline |
void ParamContent::SetValue |
( |
const char * |
val | ) |
|
The documentation for this class was generated from the following files: