Salome HOME
Copyright update 2020
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_MakeShapeCustom.h
1 // Copyright (C) 2014-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
20 #ifndef GeomAlgoAPI_MakeShapeCustom_H_
21 #define GeomAlgoAPI_MakeShapeCustom_H_
22
23 #include <GeomAlgoAPI_MakeShape.h>
24
25 #include <GeomAPI_DataMapOfShapeMapOfShapes.h>
26 #include <GeomAPI_DataMapOfShapeShape.h>
27
28 /** \class GeomAlgoAPI_MakeShapeCustom
29  *  \ingroup DataAlgo
30  *  \brief Interface to the root class of all topological shapes constructions
31  */
32 class GeomAlgoAPI_MakeShapeCustom : public GeomAlgoAPI_MakeShape
33 {
34 public:
35   /// Default constructor
36   GEOMALGOAPI_EXPORT GeomAlgoAPI_MakeShapeCustom();
37
38   /// Sets result shape.
39   GEOMALGOAPI_EXPORT void setResult(const GeomShapePtr theShape);
40
41   /// Adds modified shape.
42   GEOMALGOAPI_EXPORT bool addModified(const GeomShapePtr theOldShape,
43                                       const GeomShapePtr theNewShape);
44
45   /// Adds generated shape.
46   GEOMALGOAPI_EXPORT bool addGenerated(const GeomShapePtr theOldShape,
47                                        const GeomShapePtr theNewShape);
48
49   /// Adds deleted shape.
50   GEOMALGOAPI_EXPORT bool addDeleted(const GeomShapePtr theOldShape);
51
52   /// \return the list of shapes generated from the shape theShape
53   GEOMALGOAPI_EXPORT void generated(const GeomShapePtr theOldShape,
54                                     ListOfShape& theNewShapes);
55
56   /// \return the list of shapes modified from the shape theShape
57   GEOMALGOAPI_EXPORT void modified(const GeomShapePtr theShape,
58                                    ListOfShape& theNewShapes);
59
60   /// \return whether the shape is deleted
61   GEOMALGOAPI_EXPORT bool isDeleted(const GeomShapePtr theOldShape);
62
63 private:
64   GeomAPI_DataMapOfShapeMapOfShapes myGenerated;
65   GeomAPI_DataMapOfShapeMapOfShapes myModified;
66   GeomAPI_DataMapOfShapeShape       myDeleted;
67 };
68
69 #endif