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.
18 lines
373 B
18 lines
373 B
7 years ago
|
#include "quickpresenter.h"
|
||
|
using namespace QtMvvm;
|
||
|
|
||
|
QuickPresenter::QuickPresenter(QObject *parent) :
|
||
|
QObject(parent),
|
||
|
IPresenter()
|
||
|
{}
|
||
|
|
||
|
void QuickPresenter::present(QtMvvm::ViewModel *viewModel, const QVariantHash ¶ms, QPointer<QtMvvm::ViewModel> parent)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
void QuickPresenter::showDialog(const QtMvvm::MessageConfig &config, QtMvvm::MessageResult *result)
|
||
|
{
|
||
|
|
||
|
}
|