// This file is generated by WOK (CPPExt). // Please do not edit this file; modify original file instead. // The copyright and license terms as defined for the original file apply to // this header file considered to be the "object code" form of the original source. #ifndef _Aspect_TypeMapEntry_HeaderFile #define _Aspect_TypeMapEntry_HeaderFile #ifndef _Standard_HeaderFile #include #endif #ifndef _Standard_Macro_HeaderFile #include #endif #ifndef _Aspect_LineStyle_HeaderFile #include #endif #ifndef _Standard_Integer_HeaderFile #include #endif #ifndef _Standard_Boolean_HeaderFile #include #endif class Aspect_BadAccess; class Aspect_LineStyle; //! This class defines a typemap entry.
//! A typemap entry is an association between
//! a LineStyle object and an index in the typemap.
class Aspect_TypeMapEntry { public: void* operator new(size_t,void* anAddress) { return anAddress; } void* operator new(size_t size) { return Standard::Allocate(size); } void operator delete(void *anAddress) { if (anAddress) Standard::Free((Standard_Address&)anAddress); } //! Creates an unallocated typemap entry
Standard_EXPORT Aspect_TypeMapEntry(); //! Creates an allocated typemap entry
Standard_EXPORT Aspect_TypeMapEntry(const Standard_Integer index,const Aspect_LineStyle& style); //! Creates an allocated typemap entry.
//! Warning: Raises error if the typemap entry
//! is unallocated.
Standard_EXPORT Aspect_TypeMapEntry(const Aspect_TypeMapEntry& entry); //! Sets typemap entry value and allocates it.
Standard_EXPORT void SetValue(const Standard_Integer index,const Aspect_LineStyle& style) ; //! Sets typemap entry value and allocates it.
Standard_EXPORT void SetValue(const Aspect_TypeMapEntry& entry) ; void operator =(const Aspect_TypeMapEntry& entry) { SetValue(entry); } //! Sets the line style of typemap entry.
Standard_EXPORT void SetType(const Aspect_LineStyle& Style) ; Standard_EXPORT const Aspect_LineStyle& Type() const; //! Sets index value of a typemap entry.
Standard_EXPORT void SetIndex(const Standard_Integer index) ; //! Returns index value of a typemap entry.
//! Warning: Raises error if the typemap entry is unallocated .
Standard_EXPORT Standard_Integer Index() const; //! Unallocates the typemap entry.
Standard_EXPORT void Free() ; //! Returns True if the typemap entry is allocated.
//! Warning: A typemap entry is allocated when the type and
//! the index is defined.
Standard_EXPORT Standard_Boolean IsAllocated() const; Standard_EXPORT void Dump() const; protected: private: Aspect_LineStyle MyType; Standard_Integer MyIndex; Standard_Boolean MyTypeIsDef; Standard_Boolean MyIndexIsDef; }; // other Inline functions and methods (like "C++: function call" methods) #endif