gfactory
ShapeFactory.h
Go to the documentation of this file.
1 #ifndef FIRSTFACTORY_H
2 #define FIRSTFACTORY_H 1
3 
4 #include <string>
5 
6 class Shape
7 {
8 public:
9  virtual void Area() = 0;
10  virtual ~Shape() = default;
11 
12 };
13 
14 class Triangle : public Shape
15 {
16 public:
17  void Area();
18 };
19 
20 
21 class Box : public Shape
22 {
23 public:
24  void Area();
25 };
26 
27 
28 #endif // FIRSTFACTORY_H
void Area()
Definition: ShapeFactory.cc:10
virtual void Area()=0
virtual ~Shape()=default
void Area()
Definition: ShapeFactory.cc:6