#ifndef _gp_Pnt_HeaderFile #define _gp_Pnt_HeaderFile #include #include #include class gp_Pnt { public: gp_Pnt() {} gp_Pnt(const gp_XYZ& /*coords*/) {} const gp_XYZ& XYZ() const { return coord; } void Transform(const gp_Trsf&) {} private: gp_XYZ coord; }; #endif // _gp_Pnt_HeaderFile