#ifndef TRIANGLE_H #define TRIANGLE_H #include "Shape.h" class Triangle : public Shape { // Write the public and private members here }; #endif