-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPlane.hxx
More file actions
26 lines (21 loc) · 684 Bytes
/
Plane.hxx
File metadata and controls
26 lines (21 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//-----------------------------------------------------------------------------
// File: Plane.hxx
// Author: Enhope
// Date: 31-05-2019
//-----------------------------------------------------------------------------
#ifndef PLANE_HXX_
#define PLANE_HXX_
#include <factory_method_pattern/Toy.hxx>
//-----------------------------------------------------------------------------
// \brief Plane class.
class Plane: public Toy
{
public:
//! \brief Constructor.
Plane(std::string name, unsigned int price);
//! \brief Virtual destructor for subclasses.
virtual ~Plane();
//! \brief Show the product.
virtual void showProduct();
};
#endif /* PLANE_HXX_ */