ieditoraction.h
Go to the documentation of this file.
1 #ifndef DNAI_INTERFACES_IEDITORACTION_H
2 #define DNAI_INTERFACES_IEDITORACTION_H
3 #include <QString>
4 #include <utility>
5 #include "icommand.h"
6 #include "ieditormodel.h"
7 
8 namespace dnai
9 {
10  namespace interfaces
11  {
13  {
14  public:
15  virtual ~IEditorAction() = default;
16  virtual void run() = 0;
17  };
18  }
19 }
20 
21 #endif //DNAI_INTERFACES_IEDITORACTION_H
Definition: api.h:13
Definition: ieditoraction.h:12
virtual ~IEditorAction()=default