// 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 _StepData_StepDumper_HeaderFile #define _StepData_StepDumper_HeaderFile #ifndef _Standard_HeaderFile #include #endif #ifndef _Standard_Macro_HeaderFile #include #endif #ifndef _Handle_StepData_StepModel_HeaderFile #include #endif #ifndef _Interface_GeneralLib_HeaderFile #include #endif #ifndef _StepData_WriterLib_HeaderFile #include #endif #ifndef _StepData_StepWriter_HeaderFile #include #endif #ifndef _Handle_StepData_Protocol_HeaderFile #include #endif #ifndef _Standard_Integer_HeaderFile #include #endif #ifndef _Standard_Boolean_HeaderFile #include #endif #ifndef _Handle_Message_Messenger_HeaderFile #include #endif #ifndef _Handle_Standard_Transient_HeaderFile #include #endif class StepData_StepModel; class Interface_InterfaceMismatch; class StepData_Protocol; class StepData_StepWriter; class Message_Messenger; class Standard_Transient; //! Provides a way to dump entities processed through STEP, with
//! these features :
//! - same form as for writing a STEP File (because it is clear
//! and compact enough, even if the names of the fields do not
//! appear) : thus, no additionnal resource is required
//! - possibility to look for an entity itself (only its Type or
//! with its content), an entity and it shared items (one level)
//! or all the entities its refers to, directly or recursively.
class StepData_StepDumper { 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 a StepDumper, able to work on a given StepModel
//! (which defines the total scope for dumping entities) and
//! a given Protocol from Step (which defines the authorized
//! types to be dumped)
//! commands what is to be displayed (number or label)
//! 0 for number (and corresponding labels are displayed apart)
//! 1 for label (and corresponding numbers are displayed apart)
//! 2 for label without anymore
Standard_EXPORT StepData_StepDumper(const Handle(StepData_StepModel)& amodel,const Handle(StepData_Protocol)& protocol,const Standard_Integer mode = 0); //! Gives an access to the tool which is used to work : this allow
//! to acts on some parameters : Floating Format, Scopes ...
Standard_EXPORT StepData_StepWriter& StepWriter() ; //! Dumps a Entity on an Messenger. Returns True if
//! sucess, False, if the entity to dump has not been recognized
//! by the Protocol. can have one of these values :
//! - 0 : prints the TYPE only, as known in STEP Files (StepType)
//! If has not been regognized by the Protocol, or if its
//! type is Complex, the StepType is replaced by the display of
//! the cdl type. Complex Type are well processed by level 1.
//! - 1 : dumps the entity, completely (whatever it has simple or
//! complex type) but alone.
//! - 2 : dumps the entity completely, plus the item its refers to
//! at first level (a header message designates the starting
//! entity of the dump)
//! - 3 : dumps the entity and its refered items at any levels
//!
//! For levels 1,2,3, the numbers displayed (form #nnn) are the
//! numbers of the corresponding entities in the Model
Standard_EXPORT Standard_Boolean Dump(const Handle(Message_Messenger)& S,const Handle(Standard_Transient)& ent,const Standard_Integer level) ; //! Works as Dump with a Transient, but directly takes the
//! entity designated by its number in the Model
//! Returns False, also if is out of range
Standard_EXPORT Standard_Boolean Dump(const Handle(Message_Messenger)& S,const Standard_Integer num,const Standard_Integer level) ; protected: private: Handle_StepData_StepModel themodel; Interface_GeneralLib theslib; StepData_WriterLib thewlib; StepData_StepWriter thewriter; }; // other Inline functions and methods (like "C++: function call" methods) #endif