Salome HOME
Merge branch 'V9_4_BR'
[modules/shaper.git] / src / SketchSolver / PlaneGCSSolver / PlaneGCSSolver_EntityWrapper.h
1 // Copyright (C) 2014-2019  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
20 #ifndef PlaneGCSSolver_EntityWrapper_H_
21 #define PlaneGCSSolver_EntityWrapper_H_
22
23 #include <PlaneGCSSolver_Defs.h>
24
25 #include <ModelAPI_Attribute.h>
26 #include <ModelAPI_Feature.h>
27
28 #include <list>
29 #include <memory>
30
31 class PlaneGCSSolver_EntityWrapper;
32 typedef std::shared_ptr<PlaneGCSSolver_EntityWrapper> EntityWrapperPtr;
33
34 /**
35  *  Wrapper providing operations with entities regardless the solver.
36  */
37 class PlaneGCSSolver_EntityWrapper
38 {
39 public:
40   PlaneGCSSolver_EntityWrapper() : myExternal(false) {}
41   virtual ~PlaneGCSSolver_EntityWrapper() {}
42
43   /// \brief Return type of current entity
44   virtual SketchSolver_EntityType type() const = 0;
45
46   /// \brief Change flag indicating the entity cannot be changed in the solver
47   void setExternal(bool theExternal) { myExternal = theExternal; }
48   /// \brief Return the External flag
49   bool isExternal() const { return myExternal; }
50
51   /// \brief Store names of attributes and their values if necessary
52   void setAdditionalAttributes(const std::map<std::string, EntityWrapperPtr>& theAttribues)
53   { myAdditionalAttributes = theAttribues; }
54   /// \brief Return the list of additional attributes
55   const std::map<std::string, EntityWrapperPtr>& additionalAttributes() const
56   { return myAdditionalAttributes; }
57
58 private:
59   bool myExternal;
60   std::map<std::string, EntityWrapperPtr> myAdditionalAttributes;
61 };
62
63 #endif