ODIN
|
#include <ldrtypes.h>
Public Member Functions | |
LDRstring () | |
LDRstring (const STD_string &ss, const STD_string &name="") | |
LDRstring (int i, const char c=' ') | |
LDRstring (const char *charptr) | |
LDRstring (const LDRstring &str) | |
LDRstring & | operator= (const STD_string &ss) |
LDRstring & | operator= (const char *charptr) |
LDRstring & | operator= (const LDRstring &ss) |
bool | parsevalstring (const STD_string &parstring, const LDRserBase *ser=0) |
STD_string | printvalstring (const LDRserBase *ser=0) const |
STD_string | get_parx_code (parxCodeType type) 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 &) |
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) |
Friends | |
STD_ostream & | operator<< (STD_ostream &s, const LDRstring &t) |
Labeled Data Record (LDR) class for representing strings
Definition at line 36 of file ldrtypes.h.
|
inline |
Default constructor
Definition at line 43 of file ldrtypes.h.
LDRstring::LDRstring | ( | const STD_string & | ss, |
const STD_string & | name = "" |
||
) |
Constructor with the following arguments:
|
inline |
Constructs a string of length i with c as their initial content
Definition at line 56 of file ldrtypes.h.
|
inline |
Copy constructor from a C-string
Definition at line 61 of file ldrtypes.h.
|
inline |
Copy constructor
Definition at line 66 of file ldrtypes.h.
|
inlinevirtual |
Returns a deep copy of the parameter
Implements LDRbase.
Reimplemented in LDRformula, and LDRfileName.
Definition at line 94 of file ldrtypes.h.
|
virtual |
Returns C code that can be used together with the PARX(Bruker) compiler
Reimplemented from LDRbase.
|
inlinevirtual |
Returns a string describing the type of the parameter. If 'parx_equivtype' is 'true', returns the equivalent PARX parameter type
Implements LDRbase.
Reimplemented in LDRformula, and LDRfileName.
Definition at line 93 of file ldrtypes.h.
|
inline |
Assigns the C-string charptr to the parameter
Definition at line 76 of file ldrtypes.h.
|
inline |
Assigns the string ss to the parameter
Definition at line 71 of file ldrtypes.h.
|
virtual |
Parses and assigns the value in the given string, optionally using format 'ser'
Implements LDRbase.
Reimplemented in LDRfileName.
|
virtual |
Returns the value of the parameter as a string, optionally using format 'ser'
Implements LDRbase.
|
friend |
Final overrider for stream output
Definition at line 86 of file ldrtypes.h.