Migration of QtMvvm from github
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.

27 lines
534 B

#ifndef QTMVVM_WIDGETSPRESENTER_P_H
#define QTMVVM_WIDGETSPRESENTER_P_H
#include <QtCore/qset.h>
#include <QtCore/qhash.h>
#include "qtmvvmwidgets_global.h"
#include "widgetspresenter.h"
namespace QtMvvm {
class WidgetsPresenterPrivate
{
public:
WidgetsPresenterPrivate();
static WidgetsPresenter *currentPresenter();
QScopedPointer<InputWidgetFactory> inputViewFactory;
QSet<const QMetaObject*> implicitMappings;
QHash<const QMetaObject*, const QMetaObject*> explicitMappings;
};
}
#endif // QTMVVM_WIDGETSPRESENTER_P_H