#if !defined(_POINT_H_) #define _POINT_H_ #include "drawable.h" class point : public drawable { protected: coordinate p; // point public: point(const coordsys&,const coordinate&); void draw(canvas&); }; #endif