// ImportExport.h: interface for the CImportExport class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_IMPORTEXPORT_H__BAA02E6B_A948_11D1_8DA6_0800369C8A03__INCLUDED_) #define AFX_IMPORTEXPORT_H__BAA02E6B_A948_11D1_8DA6_0800369C8A03__INCLUDED_ #if _MSC_VER >= 1000 #pragma once #endif // _MSC_VER >= 1000 #include #include #include #include #include #include #include class Standard_EXPORT CImportExport { public: CImportExport() {}; virtual ~CImportExport(){}; private : static Handle(TopTools_HSequenceOfShape) BuildSequenceFromContext(const Handle(AIS_InteractiveContext)& anInteractiveContext, Handle(Quantity_HArray1OfColor)& anArrayOfColors, Handle(TColStd_HArray1OfReal)& anArrayOfTransparencies); public : //====================================================================== // return is HSequence to be able to select a set of files static int ReadBREP(const Handle_AIS_InteractiveContext& anInteractiveContext, LPCTSTR InitialDir = NULL); static Handle_TopTools_HSequenceOfShape ReadBREP(LPCTSTR InitialDir = NULL); // not by reference --> the sequence is created here !! static Standard_Boolean ReadBREP(const Standard_CString& aFileName, TopoDS_Shape& aShape); //---------------------------------------------------------------------- static void SaveBREP(const Handle_AIS_InteractiveContext& anInteractiveContext); static Standard_Boolean SaveBREP(const TopoDS_Shape& aShape); static Standard_Boolean SaveBREP(const Standard_CString& aFileName, const TopoDS_Shape& aShape); static TCollection_AsciiString BuildStorageErrorMessage( Storage_Error anError); static void ReadCSFDB(const Handle(AIS_InteractiveContext)& anInteractiveContext); static Handle(TopTools_HSequenceOfShape) ReadCSFDB(); // not by reference --> the sequence is created here !! static Standard_Boolean ReadCSFDB(const Standard_CString& aFileName, Handle(TopTools_HSequenceOfShape)& aHSequenceOfShape, // out parameter TCollection_AsciiString& ReturnMessage);// out parameter //---------------------------------------------------------------------- static void SaveCSFDB(const Handle(AIS_InteractiveContext)& anInteractiveContext); static Standard_Boolean SaveCSFDB(const Handle(TopTools_HSequenceOfShape)& aHSequenceOfShape); static Standard_Boolean SaveCSFDB(const Standard_CString& aFileName, const Handle(TopTools_HSequenceOfShape)& aHSequenceOfShape, TCollection_AsciiString& ReturnMessage, // out parameter const MgtBRep_TriangleMode aTriangleMode = MgtBRep_WithTriangle); //====================================================================== static void ReadIGES(const Handle(AIS_InteractiveContext)& anInteractiveContext); static Handle(TopTools_HSequenceOfShape) ReadIGES(); // not by reference --> the sequence is created here !! static Standard_Integer ReadIGES(const Standard_CString& aFileName, Handle(TopTools_HSequenceOfShape)& aHSequenceOfShape); //---------------------------------------------------------------------- static void SaveIGES(const Handle(AIS_InteractiveContext)& anInteractiveContext); static Standard_Boolean SaveIGES(const Handle(TopTools_HSequenceOfShape)& aHSequenceOfShape); static Standard_Boolean SaveIGES(const Standard_CString& aFileName, const Handle(TopTools_HSequenceOfShape)& aHSequenceOfShape); //====================================================================== static void ReadSTEP(const Handle(AIS_InteractiveContext)& anInteractiveContext); static Handle(TopTools_HSequenceOfShape) ReadSTEP(); // not by reference --> the sequence is created here !! static IFSelect_ReturnStatus ReadSTEP(const Standard_CString& aFileName, Handle(TopTools_HSequenceOfShape)& aHSequenceOfShape); //---------------------------------------------------------------------- static void SaveSTEP(const Handle(AIS_InteractiveContext)& anInteractiveContext); static IFSelect_ReturnStatus SaveSTEP(const Handle(TopTools_HSequenceOfShape)& aHSequenceOfShape); static IFSelect_ReturnStatus SaveSTEP(const Standard_CString& aFileName, const Handle(TopTools_HSequenceOfShape)& aHSequenceOfShape, const STEPControl_StepModelType aValue = STEPControl_ManifoldSolidBrep); static void ReadSAT(const Handle(AIS_InteractiveContext)& anInteractiveContext); static Handle(TopTools_HSequenceOfShape) ReadSAT(); // not by reference --> the sequence is created here !! static IFSelect_ReturnStatus ReadSAT(const Standard_CString& aFileName, Handle(TopTools_HSequenceOfShape)& aHSequenceOfShape); //---------------------------------------------------------------------- static Standard_Boolean SaveSTL(const Standard_CString& aFileName, const Handle(TopTools_HSequenceOfShape)& aHSequenceOfShape, TCollection_AsciiString& ReturnMessage); static Standard_Boolean SaveSTL(const Handle(TopTools_HSequenceOfShape)& aHSequenceOfShape); static void SaveSTL(const Handle(AIS_InteractiveContext)& anInteractiveContext); //---------------------------------------------------------------------- static Standard_Boolean SaveVRML(const Standard_CString& aFileName, const Handle(TopTools_HSequenceOfShape)& aHSequenceOfShape, const Handle(Quantity_HArray1OfColor)& anArrayOfColors, const Handle(TColStd_HArray1OfReal)& anArrayOfTransparencies, TCollection_AsciiString& ReturnMessage); static Standard_Boolean SaveVRML(const Handle(TopTools_HSequenceOfShape)& aHSequenceOfShape, const Handle(Quantity_HArray1OfColor)& anArrayOfColors, const Handle(TColStd_HArray1OfReal)& anArrayOfTransparencies); static void SaveVRML(const Handle(AIS_InteractiveContext)& anInteractiveContext); }; #endif // !defined(AFX_IMPORTEXPORT_H__BAA02E6B_A948_11D1_8DA6_0800369C8A03__INCLUDED_)