You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
564 B
24 lines
564 B
7 years ago
|
#ifndef QTMVVM_IPRESENTER_H
|
||
|
#define QTMVVM_IPRESENTER_H
|
||
|
|
||
|
#include "QtMvvmCore/qtmvvmcore_global.h"
|
||
|
#include "QtMvvmCore/viewmodel.h"
|
||
|
|
||
|
namespace QtMvvm {
|
||
|
|
||
|
class Q_MVVMCORE_EXPORT IPresenter
|
||
|
{
|
||
|
public:
|
||
|
inline virtual ~IPresenter() = default;
|
||
|
|
||
|
virtual void present(ViewModel *viewModel, const QVariantHash ¶ms, QPointer<ViewModel> parent = nullptr) = 0;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#define QtMvvm_IPresenterIid "de.skycoder42.qtmvvm.core.IPresenter"
|
||
|
Q_DECLARE_INTERFACE(QtMvvm::IPresenter, QtMvvm_IPresenterIid)
|
||
|
Q_DECLARE_METATYPE(QtMvvm::IPresenter*)
|
||
|
|
||
|
#endif // QTMVVM_IPRESENTER_H
|