GM6000 Digital Heater Controller Branch: main
SDX-1330
DStringItem.h
Go to the documentation of this file.
1#ifndef Cpl_Text_DStringItem_h_
2#define Cpl_Text_DStringItem_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15#include "Cpl/Text/StringItem.h"
16#include "Cpl/Text/DString.h"
17
18
19///
20namespace Cpl {
21///
22namespace Text {
23
24
25
26/** This concrete class implements the StringItem class for a 'String' using
27 a 'DString' as the internal storage for String instance.
28 */
29class DStringItem : public StringItem
30{
31protected:
32 /// Underlying String
34
35public:
36 /// Constructor
37 DStringItem( const String& string, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE ) :StringItem( m_internalString ), m_internalString( string, initialSize, blocksize ) {}
38
39 /// Constructor
40 DStringItem( const char* string="", int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE ) :StringItem( m_internalString ), m_internalString( string, initialSize, blocksize ) {}
41
42
43private:
44 /// Prevent access to the copy constructor -->Container Items should not be copied!
45 DStringItem( const DStringItem& m );
46
47 /// Prevent access to the assignment operator -->Container Items should not be copied!
48 const DStringItem& operator=( const DStringItem& m );
49
50};
51
52
53}; // end namespaces
54};
55#endif // end header latch
#define OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE
This magic constant defines the default block size that the DString class uses when allocating memory...
Definition DString.h:30
This concrete class implements a simple "dynamic storage" String Type.
Definition DString.h:44
This concrete class implements the StringItem class for a 'String' using a 'DString' as the internal ...
Definition DStringItem.h:30
DStringItem(const char *string="", int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE)
Constructor.
Definition DStringItem.h:40
DStringItem(const String &string, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE)
Constructor.
Definition DStringItem.h:37
DString m_internalString
Underlying String.
Definition DStringItem.h:33
This abstract class defines the operations that can be before on a NULL terminated string.
Definition String.h:40
This partially concrete provides a wrapper class that allows a String object to be stored directly in...
Definition StringItem.h:45
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20