first commit

This commit is contained in:
fourtf
2016-12-29 17:31:07 +01:00
parent 39c59e1df7
commit b9073b3cc2
13 changed files with 248 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#include "QWidget"
#include "notebook.h"
#include "notebookpage.h"
Notebook::Notebook(QWidget *parent)
: QWidget(parent)
{
}
NotebookPage
Notebook::AddPage()
{
return new NotebookPage(this);
}