Salome HOME
Multiple objects and tools for Boolean operations.
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_MakeShapeList.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        GeomAlgoAPI_MakeShapeList.h
4 // Created:     27 May 2015
5 // Author:      Dmitry Bobylev
6 #ifndef GeomAlgoAPI_MakeShapeList_H_
7 #define GeomAlgoAPI_MakeShapeList_H_
8
9 #include <GeomAPI_Shape.h>
10 #include <GeomAlgoAPI.h>
11 #include <GeomAlgoAPI_MakeShape.h>
12
13 #include <memory>
14
15 /** \class GeomAlgoAPI_MakeShapeList
16  *  \ingroup DataAlgo
17  *  \brief Interface to the root class of all topological shapes constructions
18  */
19 class GeomAlgoAPI_MakeShapeList : public GeomAlgoAPI_MakeShape
20 {
21   enum OperationType {
22     Generated,
23     Modified
24   };
25
26 public:
27   /// Default constructor
28   GEOMALGOAPI_EXPORT GeomAlgoAPI_MakeShapeList();
29
30   /** \brief Constructor
31    *  \param[in] theMakeShapeList list of algorithms.
32    */
33   GEOMALGOAPI_EXPORT GeomAlgoAPI_MakeShapeList(const ListOfMakeShape& theMakeShapeList);
34
35   /** \brief Initializes a class with new list of algorithms.
36    *  \param[in] theMakeShapeList list of algorithms.
37    */
38   GEOMALGOAPI_EXPORT void init(const ListOfMakeShape& theMakeShapeList);
39
40   /// \return a shape built by the shape construction algorithms
41   GEOMALGOAPI_EXPORT const std::shared_ptr<GeomAPI_Shape> shape() const;
42
43   /// \return the list of shapes generated from the shape \a theShape
44   GEOMALGOAPI_EXPORT virtual void generated(const std::shared_ptr<GeomAPI_Shape> theShape,
45                                             ListOfShape& theHistory);
46
47   /// \return the list of shapes modified from the shape \a theShape
48   GEOMALGOAPI_EXPORT virtual void modified(const std::shared_ptr<GeomAPI_Shape> theShape,
49                                            ListOfShape& theHistory);
50
51 private:
52   void result(const std::shared_ptr<GeomAPI_Shape> theShape,
53               ListOfShape& theHistory,
54               OperationType theOperationType);
55
56
57 protected:
58   ListOfMakeShape myMakeShapeList;
59 };
60
61 #endif