Salome HOME
Merge from V6_main 01/04/2013
[modules/homard.git] / src / HOMARD / HOMARD_DriverTools.hxx
1 // Copyright (C) 2011-2013  CEA/DEN, EDF R&D
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.
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 //  File   : HOMARD_DriverTools.hxx
20 //  Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
21 //
22 // ----------------------------------------------------------------------------
23
24 #ifndef HOMARD_DRIVERTOOLS_H
25 #define HOMARD_DRIVERTOOLS_H
26
27 #include <string>
28
29 class HOMARD_Boundary;
30 class HOMARD_Cas;
31 class HOMARD_Iteration;
32 class HOMARD_Hypothesis;
33 class HOMARD_Zone;
34
35 namespace HOMARD
36 {
37   //! persistence entity type
38   typedef enum { Case, Zone, Hypothesis, Iteration, Boundary } SignatureType;
39
40   //! get persistence signature
41   std::string GetSignature( SignatureType type );
42   
43   //! get data separator
44   std::string separator();
45
46   //! dump boundary to the string
47   std::string Dump( const ::HOMARD_Boundary& boundary );
48   //! dump case to the string
49   std::string Dump( const ::HOMARD_Cas& cas );
50   //! dump iteration to the string
51   std::string Dump( const ::HOMARD_Iteration& iteration );
52   //! dump hypothesis to the string
53   std::string Dump( const ::HOMARD_Hypothesis& hypothesis );
54   //! dump zone to the string
55   std::string Dump( const ::HOMARD_Zone& zone );
56
57   //! restore boundary from the string
58   bool Restore( ::HOMARD_Boundary& boundary, const std::string& stream );
59   //! restore case from the string
60   bool Restore( ::HOMARD_Cas& cas, const std::string& stream );
61   //! restore hypothesis from the string
62   bool Restore( ::HOMARD_Hypothesis& hypothesis, const std::string& stream );
63   //! restore iteration from the string
64   bool Restore( ::HOMARD_Iteration& iteration, const std::string& stream );
65   //! restore zone from the string
66   bool Restore( ::HOMARD_Zone& zone, const std::string& stream );
67 };
68
69 #endif // HOMARD_DRIVERTOOLS_H