// Created on: 1997-05-14 // Created by: Christian CAILLET // Copyright (c) 1997-1999 Matra Datavision // Copyright (c) 1999-2014 OPEN CASCADE SAS // // This file is part of Open CASCADE Technology software library. // // This library is free software; you can redistribute it and/or modify it under // the terms of the GNU Lesser General Public License version 2.1 as published // by the Free Software Foundation, with special exception defined in the file // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT // distribution for complete text of the license and disclaimer of any warranty. // // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. #ifndef _XSControl_Writer_HeaderFile #define _XSControl_Writer_HeaderFile #include #include #include #include #include #include #include class XSControl_WorkSession; class Interface_InterfaceModel; class TopoDS_Shape; //! This class gives a simple way to create then write a //! Model compliant to a given norm, from a Shape //! The model can then be edited by tools by other appropriate tools class XSControl_Writer { public: DEFINE_STANDARD_ALLOC //! Creates a Writer from scratch Standard_EXPORT XSControl_Writer(); //! Creates a Writer from scratch, with a norm name which //! identifie a Controller Standard_EXPORT XSControl_Writer(const Standard_CString norm); //! Creates a Writer from an already existing Session //! If is True (D), clears already recorded data Standard_EXPORT XSControl_Writer(const Handle(XSControl_WorkSession)& WS, const Standard_Boolean scratch = Standard_True); //! Sets a specific norm to //! Returns True if done, False if is not available Standard_EXPORT Standard_Boolean SetNorm (const Standard_CString norm); //! Sets a specific session to Standard_EXPORT void SetWS (const Handle(XSControl_WorkSession)& WS, const Standard_Boolean scratch = Standard_True); //! Returns the session used in Standard_EXPORT Handle(XSControl_WorkSession) WS() const; //! Returns the produced model. Produces a new one if not yet done //! or if is True //! This method allows for instance to edit product or header //! data before writing Standard_EXPORT Handle(Interface_InterfaceModel) Model (const Standard_Boolean newone = Standard_False); //! Transfers a Shape according to the mode Standard_EXPORT IFSelect_ReturnStatus TransferShape (const TopoDS_Shape& sh, const Standard_Integer mode = 0); //! Writes the produced model Standard_EXPORT IFSelect_ReturnStatus WriteFile (const Standard_CString filename); //! Prints Statistics about Transfer Standard_EXPORT void PrintStatsTransfer (const Standard_Integer what, const Standard_Integer mode = 0) const; protected: private: Handle(XSControl_WorkSession) thesession; }; #endif // _XSControl_Writer_HeaderFile