mirror-chatterino2/notebook.cpp
2016-12-29 17:31:07 +01:00

16 lines
204 B
C++

#include "QWidget"
#include "notebook.h"
#include "notebookpage.h"
Notebook::Notebook(QWidget *parent)
: QWidget(parent)
{
}
NotebookPage
Notebook::AddPage()
{
return new NotebookPage(this);
}