CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions
DDNameInterface Struct Referenceabstract

DDNameInterface provides a common interface to DDD entities. More...

#include <DDName.h>

Public Member Functions

DDName ddname () const
 Return the DDName. More...
 
virtual int id () const =0
 don't use ! More...
 
virtual const std::string & name () const =0
 Returns the name without the namespace. More...
 
virtual const std::string & ns () const =0
 Return the namespace. More...
 
virtual operator bool () const =0
 
virtual ~DDNameInterface ()
 

Detailed Description

DDNameInterface provides a common interface to DDD entities.

DDLogicalPart, DDMaterial, DDSolids, ... all are uniquely identified by their class and the value of their associated DDName. DDNameInterface provides read-access to their DDName.

Definition at line 77 of file DDName.h.

Constructor & Destructor Documentation

virtual DDNameInterface::~DDNameInterface ( )
inlinevirtual

Definition at line 79 of file DDName.h.

79 {}

Member Function Documentation

DDName DDNameInterface::ddname ( ) const
inline

Return the DDName.

Definition at line 89 of file DDName.h.

References name(), and ns().

89 { return DDName(name(),ns()); }
DDName is used to identify DDD entities uniquely.
Definition: DDName.h:18
virtual const std::string & ns() const =0
Return the namespace.
virtual const std::string & name() const =0
Returns the name without the namespace.
virtual int DDNameInterface::id ( ) const
pure virtual

don't use !

virtual const std::string& DDNameInterface::name ( ) const
pure virtual

Returns the name without the namespace.

Referenced by ddname(), and Vispa.Views.PropertyView.Property::valueChanged().

virtual const std::string& DDNameInterface::ns ( ) const
pure virtual

Return the namespace.

Referenced by ddname().

virtual DDNameInterface::operator bool ( ) const
pure virtual