#ifndef SHAPE_H #define SHAPE_H class Shape { public: //pure virtual method virtual double area() const = 0; }; #endif