0032961: Coding - get rid of unused headers [IGESAppli to IGESToBRep]
[occt.git] / src / IGESSelect / IGESSelect_WorkLibrary.hxx
1 // Created on: 1994-06-03
2 // Created by: Christian CAILLET
3 // Copyright (c) 1994-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 #ifndef _IGESSelect_WorkLibrary_HeaderFile
18 #define _IGESSelect_WorkLibrary_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_Type.hxx>
22
23 #include <IFSelect_WorkLibrary.hxx>
24 #include <Standard_Integer.hxx>
25 class Interface_InterfaceModel;
26 class Interface_Protocol;
27 class IFSelect_ContextWrite;
28 class IGESData_Protocol;
29 class Standard_Transient;
30
31 class IGESSelect_WorkLibrary;
32 DEFINE_STANDARD_HANDLE(IGESSelect_WorkLibrary, IFSelect_WorkLibrary)
33
34 //! Performs Read and Write an IGES File with an IGES Model
35 class IGESSelect_WorkLibrary : public IFSelect_WorkLibrary
36 {
37
38 public:
39
40   
41   //! Creates a IGES WorkLibrary
42   //! If <modefnes> is given as True, it will work for FNES
43   Standard_EXPORT IGESSelect_WorkLibrary(const Standard_Boolean modefnes = Standard_False);
44   
45   //! Reads a IGES File and returns a IGES Model (into <mod>),
46   //! or lets <mod> "Null" in case of Error
47   //! Returns 0 if OK, 1 if Read Error, -1 if File not opened
48   Standard_EXPORT Standard_Integer ReadFile (const Standard_CString name, Handle(Interface_InterfaceModel)& model, const Handle(Interface_Protocol)& protocol) const Standard_OVERRIDE;
49   
50   //! Writes a File from a IGES Model (brought by <ctx>)
51   //! Returns False (and writes no file) if <ctx> is not for IGES
52   Standard_EXPORT Standard_Boolean WriteFile (IFSelect_ContextWrite& ctx) const Standard_OVERRIDE;
53   
54   //! Defines a protocol to be adequate for IGES
55   //! (encompasses ALL the IGES norm including IGESSolid, IGESAppli)
56   Standard_EXPORT static Handle(IGESData_Protocol) DefineProtocol();
57   
58   //! Dumps an IGES Entity with an IGES Dumper. <level> is the one
59   //! used by IGESDumper.
60   Standard_EXPORT virtual void DumpEntity (const Handle(Interface_InterfaceModel)& model, const Handle(Interface_Protocol)& protocol, const Handle(Standard_Transient)& entity, Standard_OStream& S, const Standard_Integer level) const Standard_OVERRIDE;
61
62
63
64
65   DEFINE_STANDARD_RTTIEXT(IGESSelect_WorkLibrary,IFSelect_WorkLibrary)
66
67 protected:
68
69
70
71
72 private:
73
74
75   Standard_Boolean themodefnes;
76
77
78 };
79
80
81
82
83
84
85
86 #endif // _IGESSelect_WorkLibrary_HeaderFile