MapLink Pro 11.1.1.0.
Envitia MapLink Pro: The Ultimate Mapping Application Toolkit
Loading...
Searching...
No Matches
Inheritance diagram for TSLGenericName:

Detailed Description

Generic Name is the abstract class for all names in a NameSpace. Each instance of a GenericName is either a LocalName or a ScopedName. A LocalName references a local object directly accessible from the NameSpace. A Scoped Name is a composite of a LocalName for locating another NameSpace and a GenericName valid in that NameSpace.

Public Member Functions

 TSLGenericName ()
 
 TSLGenericName (const TSLGenericName &right)
 
virtual ~TSLGenericName ()=0
 
TSLGenericNameoperator= (const TSLGenericName &right)
 
virtual TSLGenericNameclone () const =0
 
virtual bool serialize (void *outputStreamOfXML, int indentation=-1, bool isRootHandler=true) const
 

Constructor & Destructor Documentation

◆ TSLGenericName() [1/2]

TSLGenericName::TSLGenericName ( )

The default constructor.

◆ TSLGenericName() [2/2]

TSLGenericName::TSLGenericName ( const TSLGenericName & right)

The copy constructor.

◆ ~TSLGenericName()

virtual TSLGenericName::~TSLGenericName ( )
pure virtual

The destructor.

Member Function Documentation

◆ clone()

virtual TSLGenericName * TSLGenericName::clone ( ) const
pure virtual

Clone method for derived or derived from classes. Creates object on the heap, so the pointer must be deleted

Implemented in TSLLocalName, TSLMemberName, TSLScopedName, and TSLTypeName.

◆ operator=()

TSLGenericName & TSLGenericName::operator= ( const TSLGenericName & right)

Assignment operator.

◆ serialize()

virtual bool TSLGenericName::serialize ( void * outputStreamOfXML,
int indentation = -1,
bool isRootHandler = true ) const
virtual