commanddecorator.h
Go to the documentation of this file.
1 #ifndef COMMANDDECORATOR_H
2 #define COMMANDDECORATOR_H
3 
4 #include "command.h"
5 
6 namespace dnai {
7  namespace commands {
9  {
10  protected:
12 
13  public:
18  explicit CommandDecorator(interfaces::ICommand *decoratedCommand);
19  };
20  }
21 }
22 
23 #endif // COMMANDDECORATOR_H
CommandDecorator(interfaces::ICommand *decoratedCommand)
Allow to add new comportement feature on the decoratedCommand.
Definition: commanddecorator.cpp:7
Definition: commanddecorator.h:8
interfaces::ICommand * m_decoratedCommand
Definition: commanddecorator.h:11
Definition: api.h:13
Definition: icommand.h:15