#include <cfl_elementary.h>

Public Member Functions

 String (void)
 
 String (std::string val)
 
 ~String (void)
 
virtual StringNew (void) const
 
virtual StringCopy (void) const
 
virtual const StringCast (const Type *pOther) const
 
void CValue (std::string val)
 
std::string CValue (void) const
 
std::string * CReference (void)
 
Stringoperator= (const String &costr)
 
Stringoperator= (const std::string &cstr)
 
 operator std::string () const
 
void DoWrite (TokenWriter &rTw, const std::string &rLabel="", const Type *pContext=0) const
 
void DoRead (TokenReader &rTr, const std::string &rLabel="", const Type *pContext=0)
 
Typeoperator= (const Type &rSrc)
 
- Public Member Functions inherited from faudes::Type
 Type (void)
 
 Type (const Type &rType)
 
virtual ~Type (void)
 
virtual void Clear (void)
 
virtual TypeAssign (const Type &rSrc)
 
Typeoperator= (const Type &rSrc)
 
virtual bool Equal (const Type &rOther) const
 
bool operator== (const Type &rOther) const
 
bool operator!= (const Type &rOther) const
 
virtual void Name (const std::string &rName)
 
virtual const std::string & Name (void) const
 
virtual const std::string & TypeName (void) const
 
void Write (const Type *pContext=0) const
 
void Write (const std::string &pFileName, const std::string &rLabel="", const Type *pContext=0, std::ios::openmode openmode=std::ios::out|std::ios::trunc) const
 
void Write (const std::string &pFileName, std::ios::openmode openmode) const
 
void Write (TokenWriter &rTw, const std::string &rLabel="", const Type *pContext=0) const
 
virtual void XWrite (const std::string &pFileName, const std::string &rLabel="", const Type *pContext=0) const
 
void XWrite (const Type *pContext=0) const
 
void XWrite (TokenWriter &rTw, const std::string &rLabel="", const Type *pContext=0) const
 
std::string ToString (const std::string &rLabel="", const Type *pContext=0) const
 
std::string ToText (const std::string &rLabel="", const Type *pContext=0) const
 
void DWrite (const Type *pContext=0) const
 
void DWrite (const std::string &pFileName, const std::string &rLabel="", const Type *pContext=0, std::ios::openmode openmode=std::ios::out|std::ios::trunc) const
 
void DWrite (TokenWriter &rTw, const std::string &rLabel="", const Type *pContext=0) const
 
void SWrite (TokenWriter &rTw) const
 
void SWrite (void) const
 
std::string ToSText (void) const
 
void Read (const std::string &rFileName, const std::string &rLabel="", const Type *pContext=0)
 
void FromString (const std::string &rString, const std::string &rLabel="", const Type *pContext=0)
 
void Read (TokenReader &rTr, const std::string &rLabel="", const Type *pContext=0)
 

Protected Attributes

std::string mCString
 

Additional Inherited Members

- Protected Member Functions inherited from faudes::Type
void DoAssign (const Type &rSrc)
 
bool DoEqual (const Type &rOther) const
 
virtual void DoXWrite (TokenWriter &rTw, const std::string &rLabel="", const Type *pContext=0) const
 
virtual void DoDWrite (TokenWriter &rTw, const std::string &rLabel="", const Type *pContext=0) const
 
virtual void DoSWrite (TokenWriter &rTw) const
 
virtual const TypeDefinitionTypeDefinitionp (void) const
 
virtual Token XBeginTag (const std::string &rLabel="", const std::string &rFallbackLabel="") const
 

Detailed Description

Elementary type

Definition at line 242 of file cfl_elementary.h.

Constructor & Destructor Documentation

◆ String() [1/2]

faudes::String::String ( void  )

Constructor

Definition at line 129 of file cfl_elementary.cpp.

◆ String() [2/2]

faudes::String::String ( std::string  val)

Constructor provided with initial value.

Parameters
valInitial value.

Definition at line 134 of file cfl_elementary.cpp.

◆ ~String()

faudes::String::~String ( void  )
inline

Destructor

Definition at line 260 of file cfl_elementary.h.

Member Function Documentation

◆ Cast()

const String * faudes::String::Cast ( const Type pOther) const
virtual

Cast the other object to String. Returns NULL if the cast is not possible.

Parameters
pOtherPointer to object to cast.
Returns
Pointer to String instance, or NULL

Reimplemented from faudes::Type.

Definition at line 149 of file cfl_elementary.cpp.

◆ Copy()

String * faudes::String::Copy ( void  ) const
virtual

Construct copy on heap. Create new String instance and return pointer.

Returns
Pointer to Integer instance.

Reimplemented from faudes::Type.

Definition at line 144 of file cfl_elementary.cpp.

◆ CReference()

std::string * faudes::String::CReference ( void  )

Get reference.

Returns
Reference to c value.

Definition at line 164 of file cfl_elementary.cpp.

◆ CValue() [1/2]

void faudes::String::CValue ( std::string  val)

Set value.

Parameters
valValue to be set. (std::string)

Definition at line 159 of file cfl_elementary.cpp.

◆ CValue() [2/2]

std::string faudes::String::CValue ( void  ) const

Get value

Returns
Value of object. (std::string)

Definition at line 154 of file cfl_elementary.cpp.

◆ DoRead()

void faudes::String::DoRead ( TokenReader rTr,
const std::string &  rLabel = "",
const Type pContext = 0 
)
virtual

Read data from TokenReader.

Parameters
rTrReference to TokenReader.
rLabelSection to read.
pContextRead context to provide contextual information (ignored)
Exceptions
Exception
  • Token mismatch
  • IO Error

Reimplemented from faudes::Type.

Definition at line 193 of file cfl_elementary.cpp.

◆ DoWrite()

void faudes::String::DoWrite ( TokenWriter rTw,
const std::string &  rLabel = "",
const Type pContext = 0 
) const
virtual

Write data to Tokenwriter.

Parameters
rTwReference to TokenWriter.
rLabelLabel of section to write.
pContextWrite context to provide contextual information (ignored)
Exceptions
Exception
  • IO Error

Reimplemented from faudes::Type.

Definition at line 169 of file cfl_elementary.cpp.

◆ New()

String * faudes::String::New ( void  ) const
virtual

Construct on heap. Create new String instance and return pointer.

NOTE: Calling function takes control.

Returns
Pointer to String instance.

Reimplemented from faudes::Type.

Definition at line 139 of file cfl_elementary.cpp.

◆ operator std::string()

faudes::String::operator std::string ( ) const
inline

Conversion to std::string

Definition at line 339 of file cfl_elementary.h.

◆ operator=() [1/3]

String& faudes::String::operator= ( const std::string &  cstr)
inline

Definition at line 331 of file cfl_elementary.h.

◆ operator=() [2/3]

String& faudes::String::operator= ( const String costr)
inline

Assignment operator.

Definition at line 323 of file cfl_elementary.h.

◆ operator=() [3/3]

Type & faudes::Type::operator=

Assign configurationdata from other object. Derived classes should implement the operator form for the assignment for each source type which allows for a non-trivial assignment. This includes the particular case were the source and destination types match exactly. In the latter case the DoAssign method should be invoked. In contrast to the Assign function, the operator form must not be reimplemented for missmatched source types: the operator form only accepts sensible source types. This allows for compiletime typeckecking. However, the downside is that when the type is not known at compiletime, configuration is not properly assigned.

Re-implementation can be done via the convenience macros FAUDES_TYPE_DECLARATION and FAUDES_TYPE_IMPLEMENTATION.

Parameters
rSrcSource to copy from
Returns
Reference to this object.

Definition at line 340 of file cfl_types.cpp.

Member Data Documentation

◆ mCString

std::string faudes::String::mCString
protected

Variable to store current value.

Definition at line 376 of file cfl_elementary.h.


The documentation for this class was generated from the following files:

libFAUDES 2.33b --- 2025.05.07 --- c++ api documentaion by doxygen