#ifndef RECTANGLE_H #define RECTANGLE_H class Rectangle { private: int w; int h; public: void setWidth(int); void setHeight(int); int getWidth(); int getHeight(); int getArea(); }; #endif