mirror-chatterino2/mainwindow.cpp
2016-12-30 12:46:03 +01:00

20 lines
323 B
C++

#include "mainwindow.h"
#include "chatwidget.h"
#include "notebook.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
notebook(this)
{
setCentralWidget(&this->notebook);
this->notebook.addPage();
this->notebook.addPage();
this->notebook.addPage();
}
MainWindow::~MainWindow()
{
}