ADTF  3.18.2
IStringabstract

The IString interface provides methods for getting and setting strings through abstract interfaces. More...

Inheritance diagram for IString:
[legend]

Public Member Functions

virtual tResult Set (const char *strValue)=0
 Sets the given null-terminated string to the implementation. More...
 
virtual const char * Get () const =0
 Gets the pointer to the current associated nullterminated-string. More...
 
virtual size_t GetLength () const =0
 Gets the current size of the strng. More...
 

Static Public Attributes

static constexpr size_t InvalidPos = g_npos
 Invalid Position size.
 

Detailed Description

The IString interface provides methods for getting and setting strings through abstract interfaces.

See adtf_string if you want to forward your own string type.

Definition at line 27 of file string_intf.h.

Member Function Documentation

◆ Get()

virtual const char* Get ( ) const
pure virtual

Gets the pointer to the current associated nullterminated-string.

Returns
The pointer to the null-terminated string.
Remarks
Check the pointer, because it depends on the implementation of IString!

Implemented in cStringRedirect, cStringLengthProxy, adtf_string< T >, and cQtIStringImpl.

Referenced by property_value< T >::FromString().

◆ GetLength()

virtual size_t GetLength ( ) const
pure virtual

Gets the current size of the strng.

Usually this is in Bytes (null-termination is not included!)

Returns
The size of the string.
Return values
Ifnot valid return InvalidPos!

Implemented in cStringRedirect, cStringLengthProxy, adtf_string< T >, and cQtIStringImpl.

◆ Set()

virtual tResult Set ( const char *  strValue)
pure virtual

Sets the given null-terminated string to the implementation.

Parameters
strValue[in] The null-terminated string to set.
Return values
ERR_NOERRORThe value is set successfully
ERR_MEMORYThe value can not be set. Too long. No truncating provided.

Implemented in cStringRedirect, adtf_string< T >, cQtIStringImpl, and cStringLengthProxy.