#ifndef MAKE_PLANE_H_ #define MAKE_PLANE_H_ class Plane { private: /* data */ public: Plane(/* args */); ~Plane(); }; #endif // MAKE_PLANE_H_