Design Patterns
Main Page
Namespaces
Classes
Files
File List
command_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_COMMAND_COMMAND_INTERFACE_H_
7
#define OPERATIONAL_COMMAND_COMMAND_INTERFACE_H_
8
9
namespace
operational
10
{
11
namespace
command
12
{
13
class
CommandInterface
14
{
15
public
:
16
virtual
~CommandInterface
() {}
17
18
virtual
void
Execute
() = 0;
19
};
20
}
21
}
22
23
#endif
24
operational::command::CommandInterface::Execute
virtual void Execute()=0
operational
Definition:
application.cc:10
operational::command::CommandInterface::~CommandInterface
virtual ~CommandInterface()
Definition:
command_interface.h:16
operational::command::CommandInterface
Definition:
command_interface.h:13
src
operational
src
command
command_interface.h
Generated by
1.8.10