Salome HOME
98155947b102ebc865b04b28315bf4389ab46d7a
[modules/geom.git] / src / GEOMImpl / GEOMImpl_IECallBack.cxx
1 // Copyright (C) 2014-2023  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 // internal includes
21 #include "GEOMImpl_IECallBack.hxx"
22 #include "GEOMImpl_Gen.hxx"
23
24 std::map<TCollection_AsciiString, GEOMImpl_IECallBack*> GEOMImpl_IECallBack::myCallBacks;
25
26 //=============================================================================
27 /*!
28  *  constructor
29  */
30 //=============================================================================
31 GEOMImpl_IECallBack::GEOMImpl_IECallBack()
32 {
33 }
34
35 //=============================================================================
36 /*!
37  *  destructor
38  */
39 //=============================================================================
40 GEOMImpl_IECallBack::~GEOMImpl_IECallBack()
41 {
42 }
43
44 //=============================================================================
45 /*!
46  *  GetEngine
47  */
48 //=============================================================================
49 GEOMImpl_Gen* GEOMImpl_IECallBack::GetEngine()
50 {
51   return dynamic_cast<GEOMImpl_Gen*>( GEOM_Engine::GetEngine() );
52 }
53
54 //=============================================================================
55 /*!
56  *  Export
57  */
58 //=============================================================================
59 bool GEOMImpl_IECallBack::Export( const Handle(GEOM_Object)      /*theOriginal*/,
60                                   const TCollection_AsciiString& /*theFileName*/,
61                                   const TCollection_AsciiString& /*theFormatName*/ )
62 {
63   return false;
64 }
65
66 //=============================================================================
67 /*!
68  *  Import
69  */
70 //=============================================================================
71 Handle(TColStd_HSequenceOfTransient)
72 GEOMImpl_IECallBack::Import( const TCollection_AsciiString& /*theFormatName*/,
73                              const TCollection_AsciiString& /*theFileName*/ )
74 {
75   return NULL;
76 }
77
78 //=============================================================================
79 /*!
80  *  ReadValue
81  */
82 //=============================================================================
83 TCollection_AsciiString
84 GEOMImpl_IECallBack::ReadValue( const TCollection_AsciiString& /*theFileName*/,
85                                 const TCollection_AsciiString& /*theFormatName*/,
86                                 const TCollection_AsciiString& /*theParameterName*/ )
87 {
88   return "";
89 }
90
91 //=============================================================================
92 /*!
93  *  Register
94  */
95 //=============================================================================
96 void GEOMImpl_IECallBack::Register( const TCollection_AsciiString& theFormatName,
97                                     GEOMImpl_IECallBack* theCallBack )
98 {
99   myCallBacks[theFormatName] = theCallBack;
100 }
101
102 //=============================================================================
103 /*!
104  *  GetCallBack
105  */
106 //=============================================================================
107 GEOMImpl_IECallBack* GEOMImpl_IECallBack::GetCallBack( const TCollection_AsciiString& theFormatName )
108 {
109   return myCallBacks.find(theFormatName) == myCallBacks.end() ?
110     new GEOMImpl_IECallBack() : myCallBacks[theFormatName];
111 }
112