#include <ArStringInfoGroup.h>
Public Member Functions | |
void | addAddStringCallback (ArFunctor3< const char *, ArTypes::UByte2, ArFunctor2< char *, ArTypes::UByte2 > * > *functor, ArListPos::Pos position=ArListPos::LAST) |
This is the function to add a callback to be called by addString. | |
bool | addString (const char *name, ArTypes::UByte2 maxLen, ArFunctor2< char *, ArTypes::UByte2 > *functor) |
Adds a string to the list in the raw format. | |
bool | addStringBool (const char *name, ArTypes::UByte2 maxLen, ArRetFunctor< bool > *functor, const char *format="%s") |
Adds a bool to the list in the helped way. | |
bool | addStringDouble (const char *name, ArTypes::UByte2 maxLen, ArRetFunctor< double > *functor, const char *format="%g") |
Adds a double to the list in the helped way. | |
bool | addStringInt (const char *name, ArTypes::UByte2 maxLen, ArRetFunctor< int > *functor, const char *format="%d") |
Adds an int to the list in the helped way. | |
bool | addStringString (const char *name, ArTypes::UByte2 maxLen, ArRetFunctor< const char * > *functor, const char *format="%s") |
Adds a string to the list in the helped way. | |
ArStringInfoGroup () | |
Constructor. | |
virtual | ~ArStringInfoGroup () |
Destructor. | |
Protected Attributes | |
std::set< std::string, ArStrCaseCmpOp > | myAddedStrings |
std::list< ArFunctor3< const char *, ArTypes::UByte2, ArFunctor2< char *, ArTypes::UByte2 > * > * > | myAddStringCBList |
ArMutex | myDataMutex |
|
Adds a string to the list in the raw format.
|