mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
16 lines
204 B
C++
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);
|
||
|
}
|