Salome HOME
Fix for the issue #2753 : error when dump/load script
[modules/shaper.git] / src / FeaturesAPI / FeaturesAPI_Intersection.h
index ad5745389e0189276345257e0d44505a30fe40ac..3720b25e475e8615bda29c611ea4542316b456f2 100644 (file)
@@ -14,7 +14,8 @@
 // License along with this library; if not, write to the Free Software
 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 //
-// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
+// See http://www.salome-platform.org/ or
+// email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
 //
 
 #ifndef FeaturesAPI_Intersection_H_
@@ -43,27 +44,20 @@ public:
   /// Constructor with values.
   FEATURESAPI_EXPORT
   explicit FeaturesAPI_Intersection(const std::shared_ptr<ModelAPI_Feature>& theFeature,
-                                    const std::list<ModelHighAPI_Selection>& theObjects,
-                                    const std::list<ModelHighAPI_Selection>& theTools);
+                                    const std::list<ModelHighAPI_Selection>& theObjects);
 
   /// Destructor.
   FEATURESAPI_EXPORT
   virtual ~FeaturesAPI_Intersection();
 
-  INTERFACE_2(FeaturesPlugin_Intersection::ID(),
+  INTERFACE_1(FeaturesPlugin_Intersection::ID(),
               objects, FeaturesPlugin_Intersection::OBJECT_LIST_ID(),
-              ModelAPI_AttributeSelectionList, /** Objects */,
-              tools, FeaturesPlugin_Intersection::TOOL_LIST_ID(),
-              ModelAPI_AttributeSelectionList, /** Tools */)
+              ModelAPI_AttributeSelectionList, /** Objects */)
 
   /// Modify objects attribute of the feature.
   FEATURESAPI_EXPORT
   void setObjects(const std::list<ModelHighAPI_Selection>& theObjects);
 
-  /// Modify tools attribute of the feature.
-  FEATURESAPI_EXPORT
-  void setTools(const std::list<ModelHighAPI_Selection>& theTools);
-
   /// Dump wrapped feature
   FEATURESAPI_EXPORT
   virtual void dump(ModelHighAPI_Dumper& theDumper) const;
@@ -76,7 +70,6 @@ typedef std::shared_ptr<FeaturesAPI_Intersection> IntersectionPtr;
 /// \brief Create Intersection feature.
 FEATURESAPI_EXPORT
 IntersectionPtr addIntersection(const std::shared_ptr<ModelAPI_Document>& thePart,
-                                const std::list<ModelHighAPI_Selection>& theObjects,
-                                const std::list<ModelHighAPI_Selection>& theTools);
+                                const std::list<ModelHighAPI_Selection>& theObjects);
 
 #endif // FeaturesAPI_Intersection_H_