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.
 
 
 
 
 

24 lines
396 B

#ifndef SAMPLEVIEW_H
#define SAMPLEVIEW_H
#include <QtWidgets/QMainWindow>
#include <sampleviewmodel.h>
namespace Ui {
class SampleView;
}
class SampleView : public QMainWindow
{
Q_OBJECT
public:
Q_INVOKABLE explicit SampleView(QtMvvm::ViewModel *viewModel, QWidget *parent = nullptr);
~SampleView();
private:
SampleViewModel *_viewModel;
Ui::SampleView *ui;
};
#endif // SAMPLEVIEW_H