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.

19 lines
415 B

#include <QtWidgets/QApplication>
#include <QtMvvmWidgets/WidgetsPresenter>
#include <samplecoreapp.h>
#include <QtMvvmDataSyncWidgets/qtmvvmdatasyncwidgets_global.h>
#include "samplewindow.h"
QTMVVM_REGISTER_CORE_APP(SampleCoreApp)
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QtMvvm::registerDataSyncWidgets();
QtMvvm::WidgetsPresenter::registerView<SampleWindow>();
return a.exec();
}