From 8df16ee9c4f5316ae66339ab85b0d36266eae185 Mon Sep 17 00:00:00 2001 From: birkeh Date: Sun, 15 Apr 2018 20:31:31 +0200 Subject: [PATCH] . --- cstorybook.cpp | 7 +++++++ cstorybook.h | 11 +++++++++++ qtStoryWriter.pro | 6 ++++-- 3 files changed, 22 insertions(+), 2 deletions(-) create mode 100644 cstorybook.cpp create mode 100644 cstorybook.h diff --git a/cstorybook.cpp b/cstorybook.cpp new file mode 100644 index 0000000..6a52947 --- /dev/null +++ b/cstorybook.cpp @@ -0,0 +1,7 @@ +#include "cstorybook.h" + + +cStoryBook::cStoryBook() +{ + +} diff --git a/cstorybook.h b/cstorybook.h new file mode 100644 index 0000000..2a6d8c0 --- /dev/null +++ b/cstorybook.h @@ -0,0 +1,11 @@ +#ifndef CSTORYBOOK_H +#define CSTORYBOOK_H + + +class cStoryBook +{ +public: + cStoryBook(); +}; + +#endif // CSTORYBOOK_H \ No newline at end of file diff --git a/qtStoryWriter.pro b/qtStoryWriter.pro index c0e0052..db66ae2 100644 --- a/qtStoryWriter.pro +++ b/qtStoryWriter.pro @@ -61,7 +61,8 @@ SOURCES += \ common.cpp \ ctextedit.cpp \ cstructurewindow.cpp \ - cwidget.cpp + cwidget.cpp \ + cstorybook.cpp HEADERS += \ cmainwindow.h \ @@ -71,7 +72,8 @@ HEADERS += \ common.h \ ctextedit.h \ cstructurewindow.h \ - cwidget.h + cwidget.h \ + cstorybook.h FORMS += \ cmainwindow.ui \