Compounds | |
class | IDate |
BaseDate abstract data class. More... | |
class | TBasicString |
class | TDirectiveDFA |
class | TGmtDate |
class | TLocalDate |
class | TTimeInterval |
Represents a time difference in seconds. More... | |
Typedefs | |
typedef TBasicString< char > | TString |
Extended string specialization. | |
Enumerations | |
enum | ESpecialSymbol |
Special input symbols. | |
enum | EState |
States for directives DFA. | |
Functions | |
const char * | BoolToString (bool gTRUTH, const char *pkcTRUE="true", const char *pkcFALSE="false") |
TString | Format (const char *pkcFORMAT...) |
template<typename TChar, typename TTraits, typename TAllocator> TBasicString< TChar, TTraits, TAllocator > | Lowercase (const std::basic_string< TChar, TTraits, TAllocator > &rkySOURCE) |
template<typename TChar, typename TTraits, typename TAllocator> TBasicString< TChar, TTraits, TAllocator > | Uppercase (const std::basic_string< TChar, TTraits, TAllocator > &rkySOURCE) |
template<typename TInputIter, typename TChar, typename TOutputIter> TOutputIter | Split (TInputIter tBEGIN_ITER, TInputIter tEND_ITER, TChar tSEPARATOR, TOutputIter tTARGET_ITER) |
|
Returns pkcTRUE if gTRUTH is true, else returns pkcFALSE.
Referenced by mpcl::text::html::TRadioGroup::insertUpdating(). |
|
|
Returns a copy of rkySOURCE but with all characters changed to lowercase (using std::tolower()).
Definition at line 83 of file string.hh. References Lowercase(). Referenced by Lowercase(). |
|
Stores in a container, the elements in [first, last) separated by tSEPARATOR.
Definition at line 119 of file string.hh. References Split(). Referenced by mpcl::net::corba::TOrb::enrol(), mpcl::system::ISystem::getPathItems(), Split(), and mpcl::text::TBasicString< TChar, TTraits, TAllocator >::split(). |
|
Returns a copy of rkySOURCE but with all characters changed to uppercase (using std::toupper()).
Definition at line 102 of file string.hh. References Uppercase(). Referenced by Uppercase(). |