// main.cpp : Defines the entry point for the console application. // #include "Rectangle.h" // Coppies all the rectangle code into this file #include int main() { Rectangle aRec; aRec.setArea(45.0); std::cout << "Area: " << aRec.returnArea() << std::endl; return 0; }