Salome HOME
Merge branch 'master' into gni/adaptation
[modules/smesh.git] / src / ADAPT / HOMARD_DriverTools.hxx
1 // Copyright (C) 2011-2020  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, 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 //  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 "HOMARD.hxx"
28
29 #include <string>
30
31 class HOMARD_Boundary;
32 class HOMARD_Cas;
33 class HOMARD_Iteration;
34 class HOMARD_Hypothesis;
35 class HOMARD_Zone;
36 class HOMARD_YACS;
37
38 namespace ADAPT
39 {
40   //! persistence entity type
41   typedef enum { Case, Zone, Hypothesis, Iteration, Boundary, YACS } SignatureType;
42
43   //! get persistence signature
44   HOMARDIMPL_EXPORT std::string GetSignature( SignatureType type );
45
46   //! get data separator
47   HOMARDIMPL_EXPORT std::string separator();
48
49   //! dump boundary to the string
50   HOMARDIMPL_EXPORT std::string Dump( const ::HOMARD_Boundary& boundary );
51   //! dump case to the string
52   HOMARDIMPL_EXPORT std::string Dump( const ::HOMARD_Cas& cas );
53   //! dump iteration to the string
54   HOMARDIMPL_EXPORT std::string Dump( const ::HOMARD_Iteration& iteration );
55   //! dump hypothesis to the string
56   HOMARDIMPL_EXPORT std::string Dump( const ::HOMARD_Hypothesis& hypothesis );
57   //! dump zone to the string
58   HOMARDIMPL_EXPORT std::string Dump( const ::HOMARD_Zone& zone );
59   //! dump yacs to the string
60   HOMARDIMPL_EXPORT std::string Dump( const ::HOMARD_YACS& yacs );
61
62   //! restore boundary from the string
63   HOMARDIMPL_EXPORT bool Restore( ::HOMARD_Boundary& boundary, const std::string& stream );
64   //! restore case from the string
65   HOMARDIMPL_EXPORT bool Restore( ::HOMARD_Cas& cas, const std::string& stream );
66   //! restore hypothesis from the string
67   HOMARDIMPL_EXPORT bool Restore( ::HOMARD_Hypothesis& hypothesis, const std::string& stream );
68   //! restore iteration from the string
69   HOMARDIMPL_EXPORT bool Restore( ::HOMARD_Iteration& iteration, const std::string& stream );
70   //! restore zone from the string
71   HOMARDIMPL_EXPORT bool Restore( ::HOMARD_Zone& zone, const std::string& stream );
72   //! restore yacs from the string
73   HOMARDIMPL_EXPORT bool Restore( ::HOMARD_YACS& yacs, const std::string& stream );
74 };
75
76 #endif // HOMARD_DRIVERTOOLS_H