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
Box
Definition:
ShapeFactory.h:22
Box::Area
void Area()
Definition:
ShapeFactory.cc:10
Shape
Definition:
ShapeFactory.h:7
Shape::Area
virtual void Area()=0
Shape::~Shape
virtual ~Shape()=default
Triangle
Definition:
ShapeFactory.h:15
Triangle::Area
void Area()
Definition:
ShapeFactory.cc:6
examples
ShapeFactory.h
Generated by
1.9.1