#ifndef TRIANGLE_H #define TRIANGLE_H #include "Polygon.h" class ATriangle : public APolygon { public: ATriangle(); }; #endif // TRIANGLE_H