1 // Copyright (C) 2014-2017 CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
21 #ifndef BuildAPI_Edge_H_
22 #define BuildAPI_Edge_H_
26 #include <BuildPlugin_Edge.h>
28 #include <ModelHighAPI_Interface.h>
29 #include <ModelHighAPI_Macro.h>
31 class ModelHighAPI_Selection;
33 /// \class BuildAPI_Edge
34 /// \ingroup CPPHighAPI
35 /// \brief Interface for Edge feature.
36 class BuildAPI_Edge: public ModelHighAPI_Interface
39 /// Constructor without values.
41 explicit BuildAPI_Edge(const std::shared_ptr<ModelAPI_Feature>& theFeature);
43 /// Constructor with values.
45 explicit BuildAPI_Edge(const std::shared_ptr<ModelAPI_Feature>& theFeature,
46 const std::list<ModelHighAPI_Selection>& theBaseObjects);
50 virtual ~BuildAPI_Edge();
52 INTERFACE_1(BuildPlugin_Edge::ID(),
53 baseObjects, BuildPlugin_Edge::BASE_OBJECTS_ID(),
54 ModelAPI_AttributeSelectionList, /** Base objects */)
56 /// Modify base attribute of the feature.
58 void setBase(const std::list<ModelHighAPI_Selection>& theBaseObjects);
60 /// Dump wrapped feature
62 virtual void dump(ModelHighAPI_Dumper& theDumper) const;
65 /// Pointer on Edge object.
66 typedef std::shared_ptr<BuildAPI_Edge> EdgePtr;
68 /// \ingroup CPPHighAPI
69 /// \brief Create Edge feature.
71 EdgePtr addEdge(const std::shared_ptr<ModelAPI_Document>& thePart,
72 const std::list<ModelHighAPI_Selection>& theBaseObjects);
74 #endif // BuildAPI_Edge_H_