GM6000 Digital Heater Controller Branch: main
SDX-1330
FStringItem.h
Go to the documentation of this file.
1#ifndef Cpl_Text_FStringItem_h_
2#define Cpl_Text_FStringItem_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/FString.h"
17
18
19///
20namespace Cpl {
21///
22namespace Text {
23
24
25
26/** This template class implements the StringItem class for a 'String' using
27 a 'FString' as the internal storage for String instance.
28
29 Template Args: S:= Max Size of the String WITHOUT the null
30 terminator!
31 */
32template <int S>
33class FStringItem : public StringItem
34{
35protected:
36 /// Underlying String
38
39public:
40 /// Constructor
42
43 /// Constructor
44 FStringItem( const char* string="" ) :StringItem( m_internalString ), m_internalString( string ) {}
45
46
47private:
48 /// Prevent access to the copy constructor -->Container Items should not be copied!
49 FStringItem( const FStringItem& m );
50
51 /// Prevent access to the assignment operator -->Container Items should not be copied!
52 const FStringItem& operator=( const FStringItem& m );
53
54};
55
56
57}; // end namespaces
58};
59#endif // end header latch
This template class represents a NULL terminated string of a specific length.
Definition FString.h:38
This template class implements the StringItem class for a 'String' using a 'FString' as the internal ...
Definition FStringItem.h:34
FStringItem(const char *string="")
Constructor.
Definition FStringItem.h:44
FStringItem(const Cpl::Text::String &string)
Constructor.
Definition FStringItem.h:41
FString< S > m_internalString
Underlying String.
Definition FStringItem.h:37
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