X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FGeomAlgoAPI%2FGeomAlgoAPI_MakeSweep.h;h=05623740b622cd0837c1dcd4f412fec1f2f48c27;hb=d8101383b10bf780a1acf5a356007ad6dbf17711;hp=2006c87462b7334858ece234bc1f0b835ecf63e6;hpb=5315361b0c34c6e603474413024db5485c850d80;p=modules%2Fshaper.git diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_MakeSweep.h b/src/GeomAlgoAPI/GeomAlgoAPI_MakeSweep.h index 2006c8746..05623740b 100644 --- a/src/GeomAlgoAPI/GeomAlgoAPI_MakeSweep.h +++ b/src/GeomAlgoAPI/GeomAlgoAPI_MakeSweep.h @@ -27,30 +27,30 @@ class GeomAlgoAPI_MakeSweep : public GeomAlgoAPI_MakeShapeList { public: /// \returns the list of from shapes. - GEOMALGOAPI_EXPORT virtual const ListOfShape& fromShapes() const; + GEOMALGOAPI_EXPORT const ListOfShape& fromShapes() const; /// \return the list of to shapes. - GEOMALGOAPI_EXPORT virtual const ListOfShape& toShapes() const; - -protected: - /// Empty constructor. - GeomAlgoAPI_MakeSweep() : GeomAlgoAPI_MakeShapeList() {}; + GEOMALGOAPI_EXPORT const ListOfShape& toShapes() const; /// \brief Adds a shape to list of from shape. /// \param[in] theShape a shape to add. - void addFromShape(const std::shared_ptr theShape); + GEOMALGOAPI_EXPORT void addFromShape(const std::shared_ptr theShape); /// \brief Sets from shapes /// \param[in] theListOfShapes list of from shapes. - void setFromShapes(const ListOfShape& theListOfShapes); + GEOMALGOAPI_EXPORT void setFromShapes(const ListOfShape& theListOfShapes); /// \brief Adds a face to list of to shape. /// \param[in] theShape a face to add. - void addToShape(const std::shared_ptr theShape); + GEOMALGOAPI_EXPORT void addToShape(const std::shared_ptr theShape); /// \brief Sets to shapes /// \param[in] theListOfShapes list of to shapes. - void setToShapes(const ListOfShape& theListOfShapes); + GEOMALGOAPI_EXPORT void setToShapes(const ListOfShape& theListOfShapes); + +protected: + /// Empty constructor. + GeomAlgoAPI_MakeSweep() : GeomAlgoAPI_MakeShapeList() {}; private: ListOfShape myFromShapes;