CommandFactory_QtInterface.hpp
1 #pragma once
2 #include <score/command/Command.hpp>
4 
5 #include <score_lib_base_export.h>
6 
7 #include <utility>
8 
9 namespace score
10 {
11 class SCORE_LIB_BASE_EXPORT CommandFactory_QtInterface
12 {
13 public:
14  virtual ~CommandFactory_QtInterface();
15 
16  virtual std::pair<const CommandGroupKey, CommandGeneratorMap> make_commands() = 0;
17 };
18 }
Definition: CommandFactory_QtInterface.hpp:12
Base toolkit upon which the software is built.
Definition: Application.cpp:90