// 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 _BRepLib_Command_HeaderFile #define _BRepLib_Command_HeaderFile #ifndef _Standard_HeaderFile #include #endif #ifndef _Standard_Macro_HeaderFile #include #endif #ifndef _Standard_Boolean_HeaderFile #include #endif class StdFail_NotDone; //! Root class for all commands in BRepLib.
//!
//! Provides :
//!
//! * Managements of the notDone flag.
//!
//! * Catching of exceptions (not implemented).
//!
//! * Logging (not implemented).
class BRepLib_Command { 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); } Standard_EXPORT virtual void Delete() ; Standard_EXPORT virtual ~BRepLib_Command(){Delete() ; } Standard_EXPORT Standard_Boolean IsDone() const; //! Raises NotDone if done is false.
Standard_EXPORT void Check() const; protected: //! Set done to False.
Standard_EXPORT BRepLib_Command(); //! Set done to true.
Standard_EXPORT void Done() ; //! Set done to false.
Standard_EXPORT void NotDone() ; private: Standard_Boolean myDone; }; // other Inline functions and methods (like "C++: function call" methods) #endif