Salome HOME
Issue #532 - 4.13. Partition with splitting-arguments making solids with shared faces
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_MakeShape.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        GeomAlgoAPI_MakeShape.h
4 // Created:     17 Oct 2014
5 // Author:      Sergey ZARITCHNY
6 #ifndef GeomAlgoAPI_MakeShape_H_
7 #define GeomAlgoAPI_MakeShape_H_
8
9 #include <GeomAPI_Shape.h>
10 #include <GeomAlgoAPI.h>
11
12 #include <list>
13 #include <memory>
14
15 /**\class GeomAlgoAPI_MakeShape
16  * \ingroup DataAlgo
17  * \brief Interface to the root class of all topological shapes constructions
18  */
19 class GeomAlgoAPI_MakeShape : public GeomAPI_Interface
20 {
21 public:
22   /// Constructor
23   GEOMALGOAPI_EXPORT GeomAlgoAPI_MakeShape();
24   /// Constructor by the already stored builder in the interface
25   GEOMALGOAPI_EXPORT GeomAlgoAPI_MakeShape(void* theBuilder);
26
27   /// Constructor by the builder and wire. Used for pipe builder.
28   GEOMALGOAPI_EXPORT GeomAlgoAPI_MakeShape(void* theBuilder,
29                                            const std::shared_ptr<GeomAPI_Shape> theWire,
30                                            const std::shared_ptr<GeomAPI_Shape> theBaseShape);
31
32   /// Returns a shape built by the shape construction algorithm
33   GEOMALGOAPI_EXPORT const std::shared_ptr<GeomAPI_Shape>  shape() const;
34
35   /// Returns the list of shapes generated from the shape \a theShape
36   GEOMALGOAPI_EXPORT virtual void generated(
37     const std::shared_ptr<GeomAPI_Shape> theShape, ListOfShape& theHistory);
38
39   /// Returns the  list of shapes modified from the shape \a theShape
40   GEOMALGOAPI_EXPORT virtual void modified(
41     const std::shared_ptr<GeomAPI_Shape> theShape, ListOfShape& theHistory);
42
43   /// Returns whether the shape is an edge
44   GEOMALGOAPI_EXPORT virtual bool isDeleted(const std::shared_ptr<GeomAPI_Shape> theShape);
45
46   protected:
47   /// The resulting shape
48   std::shared_ptr<GeomAPI_Shape> myShape;
49   std::shared_ptr<GeomAPI_Shape> myWire;
50   std::shared_ptr<GeomAPI_Shape> myBaseShape;
51 };
52
53 typedef std::list<std::shared_ptr<GeomAlgoAPI_MakeShape> > ListOfMakeShape;
54
55 #endif