Design Patterns
chassis.h
Go to the documentation of this file.
1 // Based on "Design Patterns: Elements of Reusable Object-Oriented Software"
2 // book by Erich Gamma, John Vlissides, Ralph Johnson, and Richard Helm
3 //
4 // Created by Bartosz Rachwal. The National Institute of Advanced Industrial Science and Technology, Japan.
5 
6 #ifndef STRUCTURAL_COMPOSITE_CHASSIS_H_
7 #define STRUCTURAL_COMPOSITE_CHASSIS_H_
8 
9 #include "composite_equipment.h"
10 
11 namespace structural
12 {
13 namespace composite
14 {
16 {
17  public:
18  Chassis();
19  explicit Chassis(const std::string& name);
20 };
21 }
22 }
23 
24 #endif
25 
Definition: shape_interface.h:11
Definition: composite_equipment.h:19
Definition: chassis.h:15
Chassis()
Definition: chassis.cc:14
virtual std::string name() const override
Definition: composite_equipment.cc:24