Loading...
Searching...
No Matches
DocumentDelegateView.hpp
1#pragma once
2#include <QObject>
3
4#include <score_lib_base_export.h>
5class QWidget;
6
7namespace score
8{
9class SCORE_LIB_BASE_EXPORT DocumentDelegateView : public QObject
10{
11public:
12 using QObject::QObject;
13 virtual ~DocumentDelegateView();
14
15 virtual QWidget* getWidget() = 0;
16
17 virtual void ready() = 0;
18};
19}
Definition DocumentDelegateView.hpp:10
Base toolkit upon which the software is built.
Definition Application.cpp:90