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.
25 lines
396 B
25 lines
396 B
7 years ago
|
#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
|