Salome HOME
Interfaces to be used by Import feature.
[modules/shaper.git] / src / Model / Model_ResultBody.cpp
index 807dcc7330ed1077ba7aaa47c8b39ef9c549b1f7..f4a37d35316ac21749b73464e9d5e847ec469295 100644 (file)
@@ -101,11 +101,6 @@ boost::shared_ptr<GeomAPI_Shape> Model_ResultBody::shape()
   return boost::shared_ptr<GeomAPI_Shape>();
 }
 
-boost::shared_ptr<ModelAPI_Feature> Model_ResultBody::owner()
-{
-  return myOwner;
-}
-
 void Model_ResultBody::clean()
 {
   std::vector<TNaming_Builder*>::iterator aBuilder = myBuilders.begin();
@@ -200,7 +195,7 @@ void Model_ResultBody::loadAndOrientModifiedShapes (
        ListOfShape aList;
        boost::shared_ptr<GeomAPI_Shape> aRShape(new GeomAPI_Shape());
        aRShape->setImpl((new TopoDS_Shape(aRoot)));
-       theMS->generated(aRShape, aList);
+       theMS->modified(aRShape, aList);
        std::list<boost::shared_ptr<GeomAPI_Shape> >::const_iterator anIt = aList.begin(), aLast = aList.end();
     for (; anIt != aLast; anIt++) {
       TopoDS_Shape aNewShape = (*anIt)->impl<TopoDS_Shape>();    
@@ -242,4 +237,19 @@ void Model_ResultBody::loadAndOrientGeneratedShapes (
                  builder(theTag)->Generated(aRoot,aNewShape);
     }
   }
+}
+
+void Model_ResultBody::loadFirstLevel(boost::shared_ptr<GeomAPI_Shape> theShapeIn,int&  theTag)
+{
+
+}
+
+void Model_ResultBody::loadDisconnectedEdges(boost::shared_ptr<GeomAPI_Shape> theShapeIn,int&  theTag)
+{
+
+}
+
+void Model_ResultBody::loadDisconnectedVertexes(boost::shared_ptr<GeomAPI_Shape> theShapeIn,int&  theTag)
+{
+
 }
\ No newline at end of file