Salome HOME
Issue #2622: Weak naming
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_MakeSweep.h
index d9c5f4ec2a24820c29d752742c8e2577e0473734..0d6bfd38c8997471761875f7742f8628f1a865c5 100644 (file)
@@ -1,8 +1,23 @@
-// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+// Copyright (C) 2014-2017  CEA/DEN, EDF R&D
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// 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>
+//
 
-// File:        GeomAlgoAPI_MakeSweep.h
-// Created:     23 November 2015
-// Author:      Dmitry Bobylev
 #ifndef GeomAlgoAPI_MakeSweep_H_
 #define GeomAlgoAPI_MakeSweep_H_
 
 class GeomAlgoAPI_MakeSweep : public GeomAlgoAPI_MakeShapeList
 {
 public:
-  /// \returns the list of from faces.
-  GEOMALGOAPI_EXPORT virtual const ListOfShape& fromFaces() const;
+  /// \returns the list of from shapes.
+  GEOMALGOAPI_EXPORT const ListOfShape& fromShapes() const;
 
-  /// \return the list of to faces.
-  GEOMALGOAPI_EXPORT virtual const ListOfShape& toFaces() const;
+  /// \return the list of to shapes.
+  GEOMALGOAPI_EXPORT const ListOfShape& toShapes() const;
 
-protected:
-  /// Empty constructor.
-  GeomAlgoAPI_MakeSweep() : GeomAlgoAPI_MakeShapeList() {};
+  /// \brief Adds a shape to list of from shape.
+  /// \param[in] theShape a shape to add.
+  GEOMALGOAPI_EXPORT void addFromShape(const std::shared_ptr<GeomAPI_Shape> theShape);
 
-  /// \brief Adds a face to list of from faces.
-  /// \param[in] theFace a face to add.
-  void addFromFace(const std::shared_ptr<GeomAPI_Shape> theFace);
+  /// \brief Sets from shapes
+  /// \param[in] theListOfShapes list of from shapes.
+  GEOMALGOAPI_EXPORT void setFromShapes(const ListOfShape& theListOfShapes);
 
-  /// \brief Sets from faces
-  /// \param[in] theListOfFaces list of from faces.
-  void setFromFaces(const ListOfShape& theListOfFaces);
+  /// \brief Adds a face to list of to shape.
+  /// \param[in] theShape a face to add.
+  GEOMALGOAPI_EXPORT void addToShape(const std::shared_ptr<GeomAPI_Shape> theShape);
 
-  /// \brief Adds a face to list of to faces.
-  /// \param[in] theFace a face to add.
-  void addToFace(const std::shared_ptr<GeomAPI_Shape> theFace);
+  /// \brief Sets to shapes
+  /// \param[in] theListOfShapes list of to shapes.
+  GEOMALGOAPI_EXPORT void setToShapes(const ListOfShape& theListOfShapes);
 
-  /// \brief Sets to faces
-  /// \param[in] theListOfFaces list of to faces.
-  void setToFaces(const ListOfShape& theListOfFaces);
+protected:
+  /// Empty constructor.
+  GeomAlgoAPI_MakeSweep() : GeomAlgoAPI_MakeShapeList() {};
 
 private:
-  ListOfShape myFromFaces;
-  ListOfShape myToFaces;
+  ListOfShape myFromShapes;
+  ListOfShape myToShapes;
 };
 
 #endif