GM6000 Digital Heater Controller Branch: main
SDX-1330
DFStringItem.h
Go to the documentation of this file.
1#ifndef Cpl_Text_DFStringItem_h_
2#define Cpl_Text_DFStringItem_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/DFString.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 'DFString' as the internal storage for String instance.
28 */
30{
31protected:
32 /// Underlying String
34
35public:
36 /// Constructor. The new instance uses the 'memSize' of 'string'
38
39 /// Constructor. 'memSize' is the max length of the string storage WITHOUT the null terminator. If 'memSize' is zero, the storage is defaulted to OPTION_CPL_TEXT_DFSTRING_ALLOC_BLOCK_SIZE - 1.
40 DFStringItem( size_t memSize, const char* string="" ) :StringItem( m_internalString ), m_internalString( memSize, string ) {}
41
42 /// Constructor.
43 DFStringItem( size_t memSize, const Cpl::Text::String& string ) :StringItem( m_internalString ), m_internalString( memSize, string ) {}
44
45
46private:
47 /// Prevent access to the copy constructor -->Container Items should not be copied!
48 DFStringItem( const DFStringItem& m );
49
50 /// Prevent access to the assignment operator -->Container Items should not be copied!
51 const DFStringItem& operator=( const DFStringItem& m );
52
53};
54
55
56}; // end namespaces
57};
58#endif // end header latch
This concrete class is a mix of FString and a DString - the initial memory is dynamically allocated -...
Definition DFString.h:43
This concrete class implements the StringItem class for a 'String' using a 'DFString' as the internal...
Definition DFStringItem.h:30
DFStringItem(const Cpl::Text::String &string)
Constructor. The new instance uses the 'memSize' of 'string'.
Definition DFStringItem.h:37
DFString m_internalString
Underlying String.
Definition DFStringItem.h:33
DFStringItem(size_t memSize, const char *string="")
Constructor. 'memSize' is the max length of the string storage WITHOUT the null terminator....
Definition DFStringItem.h:40
DFStringItem(size_t memSize, const Cpl::Text::String &string)
Constructor.
Definition DFStringItem.h:43
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