#pragma once class Point3 { public: Point3(void); Point3(float x1, float y1, float z1); virtual ~Point3(void); float getX(void); float getY(void); float getZ(void); void setX(float x1); void setY(float y1); void setZ(float z1); private: float x; float y; float z; };