Salome HOME
Update mail address
[modules/geom.git] / src / GEOMImpl / GEOMImpl_IInsertOperations.hxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20
21 #ifndef _GEOMImpl_IInsertOperations_HXX_
22 #define _GEOMImpl_IInsertOperations_HXX_
23
24 #include "Utils_SALOME_Exception.hxx"
25 #include "GEOM_IOperations.hxx"
26 #include "GEOM_Engine.hxx"
27 #include "GEOM_Object.hxx"
28 #include <TDocStd_Document.hxx>
29 #include <TColStd_HSequenceOfAsciiString.hxx>
30 #include <TCollection_HAsciiString.hxx>
31 #include <Resource_Manager.hxx>
32
33 class GEOMImpl_IInsertOperations : public GEOM_IOperations {
34  public:
35   Standard_EXPORT GEOMImpl_IInsertOperations(GEOM_Engine* theEngine, int theDocID);
36   Standard_EXPORT ~GEOMImpl_IInsertOperations();
37
38
39   Standard_EXPORT Handle(GEOM_Object) MakeCopy (Handle(GEOM_Object) theOriginal);
40
41   Standard_EXPORT Handle(GEOM_Object) Import (const TCollection_AsciiString& theFileName,
42                                               const TCollection_AsciiString& theFormatType);
43
44   Standard_EXPORT void Export (const Handle(GEOM_Object)      theOriginal,
45                                const TCollection_AsciiString& theFileName,
46                                const TCollection_AsciiString& theFormatType);
47
48   Standard_EXPORT Standard_Boolean ImportTranslators (Handle(TColStd_HSequenceOfAsciiString)& theFormats,
49                                                       Handle(TColStd_HSequenceOfAsciiString)& thePatterns);
50
51   Standard_EXPORT Standard_Boolean ExportTranslators (Handle(TColStd_HSequenceOfAsciiString)& theFormats,
52                                                       Handle(TColStd_HSequenceOfAsciiString)& thePatterns);
53
54   Standard_EXPORT Standard_Boolean IsSupported (const Standard_Boolean isImport,
55                                                 const TCollection_AsciiString& theFormat,
56                                                 Handle(TCollection_HAsciiString)& theLibName);
57
58  private:
59   Standard_Boolean InitResMgr ();
60
61  private:
62   Handle(Resource_Manager) myResMgr;
63 };
64
65 #endif