1#ifndef Cpl_Text_DFString_h_
2#define Cpl_Text_DFString_h_
15#include "colony_config.h"
23#ifndef OPTION_CPL_TEXT_DFSTRING_ALLOC_BLOCK_SIZE
24#define OPTION_CPL_TEXT_DFSTRING_ALLOC_BLOCK_SIZE 16
61 DFString(
size_t memSize,
const char*
string=
"" );
82 DFString(
size_t memSize,
unsigned long long num );
91 using Cpl::Text::String::operator=;
98 using Cpl::Text::String::operator+=;
#define OPTION_CPL_TEXT_DFSTRING_ALLOC_BLOCK_SIZE
This magic constant defines the default block size that the DString class uses when allocating memory...
Definition DFString.h:24
This concrete class is a mix of FString and a DString - the initial memory is dynamically allocated -...
Definition DFString.h:43
DFString(size_t memSize, const char *string="")
Constructor.
Cpl::Text::String & operator=(const DFString &string)
Append.
DFString(size_t memSize, const Cpl::Text::String &string)
Constructor.
DFString(size_t memSize, unsigned long long num)
Constructor.
DFString(size_t memSize, const DFString &string)
Constructor. 'memSize' is the max length of the string storage WITHOUT the null terminator....
Cpl::Text::String & operator+=(const DFString &string)
Append.
DFString(size_t memSize, unsigned long num)
Constructor.
DFString(size_t memSize, char c)
Constructor.
DFString(const DFString &string)
Constructor. The new instance uses the 'memSize' of 'string'.
DFString(void)
Constructor. The 'memsize' defaults to OPTION_CPL_TEXT_DFSTRING_ALLOC_BLOCK_SIZE - 1.
int calcMemSize(int len)
Returns the need memory size in "block units".
Definition DFString.h:107
DFString(const Cpl::Text::String &string)
Constructor. The new instance uses the 'memSize' of 'string'.
DFString(size_t memSize, long num)
Constructor.
DFString(size_t memSize, long long num)
Constructor.
DFString(size_t memSize, int num)
Constructor.
DFString(size_t memSize, unsigned num)
Constructor.
This mostly concrete class implements a "fixed storage" String Type.
Definition FString_.h:37
This abstract class defines the operations that can be before on a NULL terminated string.
Definition String.h:40
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20