Design Patterns
visual_component_interface.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_ADAPTER_VISUAL_COMPONENT_INTERFACE_H_
7 #define STRUCTURAL_ADAPTER_VISUAL_COMPONENT_INTERFACE_H_
8 
9 namespace structural
10 {
11 namespace adapter
12 {
14 {
15  public:
17 
18  virtual void Draw() = 0;
19  virtual void Resize() = 0;
20 };
21 }
22 }
23 
24 #endif
25 
Definition: shape_interface.h:11
virtual ~VisualComponentInterface()
Definition: visual_component_interface.h:16
Definition: visual_component_interface.h:13