Salome HOME
Remove some TODOs
[modules/shaper.git] / src / BuildAPI / BuildAPI_Shell.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 // File:        BuildAPI_Shell.cpp
4 // Created:     09 June 2016
5 // Author:      Dmitry Bobylev
6
7 #include "BuildAPI_Shell.h"
8
9 #include <ModelHighAPI_Tools.h>
10
11 //==================================================================================================
12 BuildAPI_Shell::BuildAPI_Shell(const std::shared_ptr<ModelAPI_Feature>& theFeature)
13 : ModelHighAPI_Interface(theFeature)
14 {
15   initialize();
16 }
17
18 //==================================================================================================
19 BuildAPI_Shell::BuildAPI_Shell(const std::shared_ptr<ModelAPI_Feature>& theFeature,
20                                const std::list<ModelHighAPI_Selection>& theBaseObjects)
21 : ModelHighAPI_Interface(theFeature)
22 {
23   if(initialize()) {
24     setBase(theBaseObjects);
25   }
26 }
27
28 //==================================================================================================
29 BuildAPI_Shell::~BuildAPI_Shell()
30 {
31
32 }
33
34 //==================================================================================================
35 void BuildAPI_Shell::setBase(const std::list<ModelHighAPI_Selection>& theBaseObjects)
36 {
37   fillAttribute(theBaseObjects, mybaseObjects);
38
39   execute();
40 }
41
42 //==================================================================================================
43 ShellPtr addShell(const std::shared_ptr<ModelAPI_Document>& thePart,
44                   const std::list<ModelHighAPI_Selection>& theBaseObjects)
45 {
46   std::shared_ptr<ModelAPI_Feature> aFeature = thePart->addFeature(BuildAPI_Shell::ID());
47   return ShellPtr(new BuildAPI_Shell(aFeature, theBaseObjects));
48 }