2015-04-29 22:38:29 +08:00
|
|
|
#ifndef MES_MAINWINDOW
|
|
|
|
#define MES_MAINWINDOW
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QMainWindow>
|
2023-05-18 04:29:39 +08:00
|
|
|
#include "ui/ui_mainWindow.h"
|
2015-04-29 22:38:29 +08:00
|
|
|
|
|
|
|
class NotificationModel;
|
|
|
|
|
|
|
|
class MainWindow : public QMainWindow, private Ui_MainWindow {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit MainWindow(QWidget *parent=0);
|
|
|
|
~MainWindow();
|
|
|
|
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|