Simplygon C++ API  8.3.35800.0
SimplygonSDK::IString Class Referenceabstract

#include <SimplygonSDK.h>

Public Member Functions

virtual const char * _GetText () const =0
 
virtual bool _IsEmpty () const =0
 
virtual void AddRef ()=0
 
 IString ()
 
virtual void Release ()=0
 

Protected Attributes

char * Text
 

Detailed Description

The IString class is used to represent strings that are created by the API objects, and returned to the caller. The strings are reference counted and constant strings, and can be retrieved, but not modified. All methods that input a string value does this using basic null-terminated char-pointers. For simplicity it is recommended to never use the IString interface directly, but instead through an rstring object, which inherits from a CountedPointer of IString, and that also adds help code and conversions.

Definition at line 402 of file SimplygonSDK.h.

Constructor & Destructor Documentation

◆ IString()

SimplygonSDK::IString::IString ( )
inline

Definition at line 408 of file SimplygonSDK.h.

Member Function Documentation

◆ _GetText()

virtual const char* SimplygonSDK::IString::_GetText ( ) const
pure virtual

Never used directly, use rstring objects and functions instead.

◆ _IsEmpty()

virtual bool SimplygonSDK::IString::_IsEmpty ( ) const
pure virtual

Never used directly, use rstring objects and functions instead.

◆ AddRef()

virtual void SimplygonSDK::IString::AddRef ( )
pure virtual

Never used directly, use rstring objects and functions instead.

◆ Release()

virtual void SimplygonSDK::IString::Release ( )
pure virtual

Never used directly, use rstring objects and functions instead.

Member Data Documentation

◆ Text

char* SimplygonSDK::IString::Text
protected

Definition at line 405 of file SimplygonSDK.h.


The documentation for this class was generated from the following file: