Hide menu
Loading...
Searching...
No Matches
cadex::ModelData_PMISemanticElementComponent Class Reference

Base class for various component types. More...

#include <cadex/ModelData_PMISemanticElementComponent.hxx>

Inheritance diagram for cadex::ModelData_PMISemanticElementComponent:
cadex::ModelData_BaseObject cadex::ModelData_PMIDatumComponent cadex::ModelData_PMIDimensionComponent cadex::ModelData_PMIGeometricToleranceComponent cadex::ModelData_PMISurfaceFinishComponent

Classes

class  AttributeIterator
 Iterator over added attributes. More...
 

Public Member Functions

void AddAttribute (const ModelData_PMISemanticAttribute &theAttribute)
 Adds an attribute.
 
bool HasAttributes () const
 Returns true if semantic attributes were added and false otherwise.
 
size_t NumberOfAttributes () const
 Returns number of added attributes.
 
void Accept (ModelData_PMISemanticAttributeVisitor &theVisitor) const
 Accepts an attribute visitor.
 
void Accept (ModelData_PMISemanticElementComponentVisitor &theVisitor) const
 Accepts the visitor.
 
- Public Member Functions inherited from cadex::ModelData_BaseObject
 ModelData_BaseObject ()
 Constructor.
 
IdType TypeId () const
 Returns an object type id.
 
template<typename T >
bool IsOfType () const
 Returns true if the object has a type T.
 
void SetName (const Base_UTF16String &theName)
 Sets an object name.
 
Base_UTF16String Name () const
 
void SetUuid (const Base_Uuid &theUuid)
 
Base_Uuid Uuid () const
 
void Nullify ()
 Resets reference to implementation object.
 
bool IsNull () const
 Returns true if the object is nullified.
 
 operator bool () const
 Casts the object to the bool type.
 
internal::ModelData_BaseObjectImpl * Impl () const
 Return a handle to backend (reserved for internal use).
 

Protected Member Functions

 ModelData_PMISemanticElementComponent ()
 Constructor.
 
 ModelData_PMISemanticElementComponent (internal::ModelData_PMISemanticElementComponentImpl *theImpl)
 Constructor.
 
- Protected Member Functions inherited from cadex::ModelData_BaseObject
 ModelData_BaseObject (const internal::ModelData_BaseObjectImpl *theImpl)
 Constructor (reserved for internal use).
 
 ModelData_BaseObject (const internal::ModelData_BaseObjectImpl *theImpl, const Base_UTF16String &theName)
 Constructor (reserved for internal use).
 
template<typename T >
T * GetOrCreateImpl ()
 Reserved for internal use.
 

Additional Inherited Members

- Public Types inherited from cadex::ModelData_BaseObject
typedef int IdType
 Defines a type identifier.
 

Detailed Description

Base class for various component types.

Contains a collection of PMI semantic attributes that are specific for each of derived component.

Examples
exploring/pmi/Program.cs, and exploring/pmi/main.cxx.

Constructor & Destructor Documentation

◆ ModelData_PMISemanticElementComponent()

cadex::ModelData_PMISemanticElementComponent::ModelData_PMISemanticElementComponent ( )
inlineprotected

Constructor.

Creates a null object (see IsNull()).

Member Function Documentation

◆ Accept()

void cadex::ModelData_PMISemanticElementComponent::Accept ( ModelData_PMISemanticAttributeVisitor theVisitor) const

Accepts an attribute visitor.

The order of visiting will match the order of adding attributes with AddAttribute().

Examples
exploring/pmi/Program.cs, and exploring/pmi/main.cxx.

◆ HasAttributes()

bool cadex::ModelData_PMISemanticElementComponent::HasAttributes ( ) const

Returns true if semantic attributes were added and false otherwise.

Returns false if IsNull().

See also
AddAttribute(), NumberOfAttributes()
Examples
exploring/pmi/Program.cs, and exploring/pmi/main.cxx.

◆ NumberOfAttributes()

size_t cadex::ModelData_PMISemanticElementComponent::NumberOfAttributes ( ) const

Returns number of added attributes.

Returns 0 if IsNull().

See also
AddAttribute(), HasAttributes()