Definition at line 93 of file Parameters.h.
◆ IntParameter()
IntParameter::IntParameter |
( |
char |
c, |
|
|
const char * |
desc, |
|
|
int & |
v |
|
) |
| |
|
inline |
◆ Status()
void IntParameter::Status |
( |
| ) |
|
|
virtual |
Implements Parameter.
Definition at line 99 of file Parameters.cpp.
100{
101 fprintf(stderr, "%*s : %*d (-%c9999)\n", nameCol, description,
102 statusCol, *(int *) var, ch);
103}
◆ Translate()
void IntParameter::Translate |
( |
const char * |
value | ) |
|
|
protectedvirtual |
◆ TranslateExtras()
bool IntParameter::TranslateExtras |
( |
const char * |
value, |
|
|
const char * |
extras |
|
) |
| |
|
protectedvirtual |
Reimplemented from Parameter.
Definition at line 89 of file Parameters.cpp.
90{
91 if (value[0] != 0 || !CheckInteger(extras))
92 return false;
93
94 Translate(extras);
95
96 return true;
97}
The documentation for this class was generated from the following files: