Design Patterns
help_handler_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 OPERATIONAL_CHAIN_HELP_HANDLER_INTERFACE_H_
7 #define OPERATIONAL_CHAIN_HELP_HANDLER_INTERFACE_H_
8 
9 namespace operational
10 {
11 namespace chain
12 {
14 {
15  public:
16  virtual ~HelpHandlerInterface() { };
17 
18  virtual bool HasHelp() = 0;
19  virtual void SetHandler(HelpHandlerInterface*, int) = 0;
20  virtual void HandleHelp() = 0;
21 };
22 }
23 }
24 
25 #endif
26 
Definition: help_handler_interface.h:13
virtual void SetHandler(HelpHandlerInterface *, int)=0
virtual ~HelpHandlerInterface()
Definition: help_handler_interface.h:16
Definition: application.cc:10