gfactory
ShapeFactory.cc
Go to the documentation of this file.
1 #include "ShapeFactory.h"
2 
3 #include <iostream>
4 using namespace std;
5 
6 void Triangle::Area() {
7  cout << " Factory shape triangle it works! " << endl;
8 }
9 
10 void Box::Area() {
11  cout << " Factory shape box it works! " << endl;
12 }
13 
void Area()
Definition: ShapeFactory.cc:10
void Area()
Definition: ShapeFactory.cc:6