Salome HOME
Merge branch 'fbt/add_header_for_mpi_compilation'
[modules/geom.git] / src / GEOMImpl / GEOMImpl_IECallBack.cxx
1 // Copyright (C) 2014-2015  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( int                            /*theDocId*/,
60                                   const Handle(GEOM_Object)      /*theOriginal*/,
61                                   const TCollection_AsciiString& /*theFileName*/,
62                                   const TCollection_AsciiString& /*theFormatName*/ )
63 {
64   return false;
65 }
66
67 //=============================================================================
68 /*!
69  *  Import
70  */
71 //=============================================================================
72 Handle(TColStd_HSequenceOfTransient)
73 GEOMImpl_IECallBack::Import( int                            /*theDocId*/,
74                              const TCollection_AsciiString& /*theFormatName*/,
75                              const TCollection_AsciiString& /*theFileName*/ )
76 {
77   return NULL;
78 }
79
80 //=============================================================================
81 /*!
82  *  ReadValue
83  */
84 //=============================================================================
85 TCollection_AsciiString
86 GEOMImpl_IECallBack::ReadValue( int                            /*theDocId*/,
87                                 const TCollection_AsciiString& /*theFileName*/,
88                                 const TCollection_AsciiString& /*theFormatName*/,
89                                 const TCollection_AsciiString& /*theParameterName*/ )
90 {
91   return "";
92 }
93
94 //=============================================================================
95 /*!
96  *  Register
97  */
98 //=============================================================================
99 void GEOMImpl_IECallBack::Register( const TCollection_AsciiString& theFormatName,
100                                     GEOMImpl_IECallBack* theCallBack )
101 {
102   myCallBacks[theFormatName] = theCallBack;
103 }
104
105 //=============================================================================
106 /*!
107  *  GetCallBack
108  */
109 //=============================================================================
110 GEOMImpl_IECallBack* GEOMImpl_IECallBack::GetCallBack( const TCollection_AsciiString& theFormatName )
111 {
112   return myCallBacks.find(theFormatName) == myCallBacks.end() ?
113     new GEOMImpl_IECallBack() : myCallBacks[theFormatName];
114 }
115