meson/test cases/frameworks/4 qt/mainWindow.h

21 lines
315 B
C
Raw Permalink Normal View History

2015-04-29 22:38:29 +08:00
#ifndef MES_MAINWINDOW
#define MES_MAINWINDOW
#include <QObject>
#include <QMainWindow>
#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