using namespace std;
-GeomAPI_Pln::GeomAPI_Pln(const shared_ptr<GeomAPI_Pnt>& thePoint,
- const shared_ptr<GeomAPI_Dir>& theNormal)
+GeomAPI_Pln::GeomAPI_Pln(const boost::shared_ptr<GeomAPI_Pnt>& thePoint,
+ const boost::shared_ptr<GeomAPI_Dir>& theNormal)
: GeomAPI_Interface(new gp_Pln(thePoint->impl<gp_Pnt>(),
theNormal->impl<gp_Dir>()))
{
{
}
-shared_ptr<GeomAPI_Pnt> GeomAPI_Pln::location()
+boost::shared_ptr<GeomAPI_Pnt> GeomAPI_Pln::location()
{
gp_Pnt aLoc = impl<gp_Pln>().Location();
- return shared_ptr<GeomAPI_Pnt>(new GeomAPI_Pnt(aLoc.X(), aLoc.Y(), aLoc.Z()));
+ return boost::shared_ptr<GeomAPI_Pnt>(new GeomAPI_Pnt(aLoc.X(), aLoc.Y(), aLoc.Z()));
}
-shared_ptr<GeomAPI_Dir> GeomAPI_Pln::direction()
+boost::shared_ptr<GeomAPI_Dir> GeomAPI_Pln::direction()
{
const gp_Dir& aDir = impl<gp_Pln>().Axis().Direction();
- return shared_ptr<GeomAPI_Dir>(new GeomAPI_Dir(aDir.X(), aDir.Y(), aDir.Z()));
+ return boost::shared_ptr<GeomAPI_Dir>(new GeomAPI_Dir(aDir.X(), aDir.Y(), aDir.Z()));
}
#ifndef GeomAPI_Pln_HeaderFile
#define GeomAPI_Pln_HeaderFile
-#include <memory>
+#include <boost/shared_ptr.hpp>
#include <GeomAPI_Interface.h>
class GeomAPI_Pnt;
{
public:
/// Creation of plane by the point and normal
- GeomAPI_Pln(const std::shared_ptr<GeomAPI_Pnt>& thePoint,
- const std::shared_ptr<GeomAPI_Dir>& theNormal);
+ GeomAPI_Pln(const boost::shared_ptr<GeomAPI_Pnt>& thePoint,
+ const boost::shared_ptr<GeomAPI_Dir>& theNormal);
/// Creation of plane by coefficients A * X + B * Y + C * Z + D = 0.0
GeomAPI_Pln(const double theA, const double theB, const double theC, const double theD);
/// Returns a point of this plane
- std::shared_ptr<GeomAPI_Pnt> location();
+ boost::shared_ptr<GeomAPI_Pnt> location();
/// Returns a plane normal
- std::shared_ptr<GeomAPI_Dir> direction();
+ boost::shared_ptr<GeomAPI_Dir> direction();
};
#endif