// -------------------------------------------------------- // // This file will contain your point structure // // -------------------------------------------------------- #ifndef __POINT_H #define __POINT_H #include #include #include "defs.h" // -------------------------------------------------------- struct point { point(){} ~point(){} }; void destroy (point* p) { p->~point(); } // Do NOT remove // -------------------------------------------------------- #endif