From cfda4798d4cdb1a50e156b07aec35a8c99402670 Mon Sep 17 00:00:00 2001 From: fourtf Date: Fri, 30 Dec 2016 12:19:31 +0100 Subject: [PATCH] added basic tabs and buttons --- notebookbutton.cpp | 6 ++++++ notebookbutton.h | 11 +++++++++++ 2 files changed, 17 insertions(+) create mode 100644 notebookbutton.cpp create mode 100644 notebookbutton.h diff --git a/notebookbutton.cpp b/notebookbutton.cpp new file mode 100644 index 00000000..302bffb2 --- /dev/null +++ b/notebookbutton.cpp @@ -0,0 +1,6 @@ +#include "notebookbutton.h" + +NotebookButton::NotebookButton() +{ + +} diff --git a/notebookbutton.h b/notebookbutton.h new file mode 100644 index 00000000..83856fb7 --- /dev/null +++ b/notebookbutton.h @@ -0,0 +1,11 @@ +#ifndef NOTEBOOKBUTTON_H +#define NOTEBOOKBUTTON_H + + +class NotebookButton +{ +public: + NotebookButton(); +}; + +#endif // NOTEBOOKBUTTON_H \ No newline at end of file