StringDH(MemoryHeap* pheap = Memory::GetGlobalHeap()); StringDH(MemoryHeap* pheap, const char* data); StringDH(MemoryHeap* pheap, const char* data1, const char* pdata2, const char* pdata3 = 0); StringDH(MemoryHeap* pheap, const char* data, UPInt buflen); explicit StringDH(MemoryHeap* pheap, const InitStruct& src, UPInt size); explicit StringDH(MemoryHeap* pheap, const wchar_t* data);
StringDH constructors.
Parameters |
Description |
MemoryHeap* pheap = Memory::GetGlobalHeap() |
Dynamic memory heap for StringDH. |
const char* data |
Pointer to the string. |
const char* pdata2 |
Pointer to the string. |
const char* pdata3 = 0 |
Pointer to the string. |
UPInt size |
Size of the buffer for the dynamic strings. |
InitStruct& src |
Initializer for initializing the string |