]> SALOME platform Git repositories - modules/shaper.git/blob - src/Model/Model_ResultCompSolid.cpp
Salome HOME
93f4331a034f48cd017e408b84ce70fec4cea07d
[modules/shaper.git] / src / Model / Model_ResultCompSolid.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        Model_ResultCompSolid.cpp
4 // Created:     20 Jul 2015
5 // Author:      Natalia ERMOLAEVA
6
7 #include <Model_ResultCompSolid.h>
8
9 Model_ResultCompSolid::Model_ResultCompSolid()
10 {
11 }
12
13 Model_ResultCompSolid::~Model_ResultCompSolid()
14 {
15 }
16
17 std::shared_ptr<ModelAPI_ResultBody> Model_ResultCompSolid::addResult(std::string theID)
18 {
19   std::shared_ptr<ModelAPI_ResultBody> aResult;
20   return aResult;
21 }
22
23 int Model_ResultCompSolid::numberOfSubs(bool forTree) const
24 {
25   return 0;
26 }
27
28 std::shared_ptr<ModelAPI_ResultBody> Model_ResultCompSolid::subResult(const int theIndex,
29                                                                       bool forTree) const
30 {
31   std::shared_ptr<ModelAPI_ResultBody> aBody;
32
33   return aBody;
34 }
35
36 int Model_ResultCompSolid::subResultId(const int theIndex) const
37 {
38   return 0;
39 }
40
41 bool Model_ResultCompSolid::isSub(ObjectPtr theObject) const
42 {
43   return true;
44 }
45
46 void Model_ResultCompSolid::removeResult(std::shared_ptr<ModelAPI_ResultBody> theResult)
47 {
48 }