summaryrefslogtreecommitdiffstats
path: root/test cases/frameworks/4 qt/mainWindow.h
blob: 7f6d90601eb8f2415193460a7291fda8fa806791 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef MES_MAINWINDOW
#define MES_MAINWINDOW

#include <QObject>
#include <QMainWindow>
#include "ui_mainWindow.h"

class NotificationModel;

class MainWindow : public QMainWindow, private Ui_MainWindow {
    Q_OBJECT

public:
    explicit MainWindow(QWidget *parent=0);
    ~MainWindow();

private:
};

#endif