#if !defined(_SQUARE_H_) #define _SQUARE_H_ #include "rectangle.h" class square: public rectangle { public: square(const coordsys&, const coordinate&, double); // midpoint, side }; #endif