Loading...
Searching...
No Matches
ExecutorPresenter.hpp
1#pragma once
2#include <score/plugins/settingsdelegate/SettingsDelegatePresenter.hpp>
3
4namespace Execution
5{
6namespace Settings
7{
8class Model;
9class View;
11{
12public:
13 using model_type = Model;
14 using view_type = View;
15 Presenter(Model&, View&, QObject* parent);
16
17private:
18 QString settingsName() override;
19 QIcon settingsIcon() override;
20};
21}
22}
Definition ExecutorModel.hpp:64
Definition ExecutorPresenter.hpp:11
Definition ExecutorView.hpp:18
Definition SettingsDelegatePresenter.hpp:17
Components used for the execution of a score.
Definition ProcessComponent.cpp:12