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.
26 lines
472 B
26 lines
472 B
7 years ago
|
#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();
|
||
|
|
||
|
QSet<const QMetaObject*> implicitMappings;
|
||
|
QHash<QByteArray, const QMetaObject*> explicitMappings;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // QTMVVM_WIDGETSPRESENTER_P_H
|