#if !defined(_TRIANGLE_H_) #define _TRIANGLE_H_ #include "shape.h" class triangle: public shape { protected: coordinate ap,bp,cp; public: triangle(const coordsys&, const coordinate&, const coordinate&, const coordinate&); void draw(canvas&); }; #endif