ODIN
|
#include <ldrtypes.h>
Public Member Functions | |
LDRbool () | |
LDRbool (bool flag, const STD_string &name="") | |
LDRbool (const LDRbool &jb) | |
LDRbool & | operator= (bool flag) |
LDRbool & | operator= (const STD_string &s) |
LDRbool & | operator= (const LDRbool &jb) |
operator bool () const | |
bool | parsevalstring (const STD_string &parstring, const LDRserBase *ser=0) |
STD_string | printvalstring (const LDRserBase *ser=0) const |
STD_string | get_typeInfo (bool parx_equivtype=false) const |
LDRbase * | create_copy () const |
Public Member Functions inherited from LDRbase | |
virtual STD_string | print (const LDRserBase &serializer=LDRserJDX()) const |
virtual STD_ostream & | print2stream (STD_ostream &os, const LDRserBase &serializer) const |
virtual int | write (const STD_string &filename, const LDRserBase &serializer=LDRserJDX()) const |
virtual bool | parse (STD_string &parstring, const LDRserBase &serializer=LDRserJDX()) |
virtual int | load (const STD_string &filename, const LDRserBase &serializer=LDRserJDX()) |
virtual double | get_minval () const |
virtual double | get_maxval () const |
bool | has_minmax () const |
const STD_string & | get_description () const |
LDRbase & | set_description (const STD_string &descr) |
virtual svector | get_alternatives () const |
const STD_string & | get_unit () const |
LDRbase & | set_unit (const STD_string &un) |
virtual parameterMode | get_parmode () const |
virtual LDRbase & | set_parmode (parameterMode parameter_mode) |
virtual fileMode | get_filemode () const |
virtual LDRbase & | set_filemode (fileMode file_mode) |
virtual GuiProps | get_gui_props () const |
virtual LDRbase & | set_gui_props (const GuiProps &) |
virtual STD_string | get_parx_code (parxCodeType type) const |
JcampDxProps | get_jdx_props () const |
LDRbase & | set_jdx_props (const JcampDxProps &jp) |
Public Member Functions inherited from Labeled | |
Labeled (const STD_string &label="unnamed") | |
Labeled & | set_label (const STD_string &label) |
const STD_string & | get_label () const |
Labeled & | operator= (const Labeled &l) |
Labeled Data Record (LDR) class for representing Boolean values
Definition at line 108 of file ldrtypes.h.
|
inline |
Default constructor
Definition at line 115 of file ldrtypes.h.
LDRbool::LDRbool | ( | bool | flag, |
const STD_string & | name = "" |
||
) |
Constructor with the following arguments:
|
inline |
Copy constructor
Definition at line 127 of file ldrtypes.h.
|
inlinevirtual |
|
inlinevirtual |
Returns a string describing the type of the parameter. If 'parx_equivtype' is 'true', returns the equivalent PARX parameter type
Implements LDRbase.
Definition at line 153 of file ldrtypes.h.
|
inline |
type conversion operator of the current value of the parameter
Definition at line 148 of file ldrtypes.h.
|
inline |
Assigns the value of flag to the parameter
Definition at line 132 of file ldrtypes.h.
|
inline |
Assigns the value of s to the parameter, s may contain "yes" or "true" (upper- or lowercase) to indicate a value of true, otherwise false
Definition at line 138 of file ldrtypes.h.
|
virtual |
Parses and assigns the value in the given string, optionally using format 'ser'
Implements LDRbase.
|
virtual |
Returns the value of the parameter as a string, optionally using format 'ser'
Implements LDRbase.