mirror-chatterino2/mainwindow.h

18 lines
266 B
C
Raw Normal View History

2016-12-29 17:31:07 +01:00
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
2016-12-30 12:20:26 +01:00
#include "notebook.h"
2016-12-29 17:31:07 +01:00
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
2016-12-30 12:20:26 +01:00
Notebook notebook;
2016-12-29 17:31:07 +01:00
};
#endif // MAINWINDOW_H