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
+10
View File
@@ -0,0 +1,10 @@
#include "notebook.h"
#include "notebooktab.h"
#include "notebookpage.h"
NotebookTab::NotebookTab(QWidget *parent, Notebook *notebook, NotebookPage *page)
: QWidget(parent)
{
this->notebook = notebook;
this->page = page;
}