This commit is contained in:
2018-04-15 20:31:31 +02:00
parent 3fb9983fa5
commit 8df16ee9c4
3 changed files with 22 additions and 2 deletions
+7
View File
@@ -0,0 +1,7 @@
#include "cstorybook.h"
cStoryBook::cStoryBook()
{
}
+11
View File
@@ -0,0 +1,11 @@
#ifndef CSTORYBOOK_H
#define CSTORYBOOK_H
class cStoryBook
{
public:
cStoryBook();
};
#endif // CSTORYBOOK_H
+4 -2
View File
@@ -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 \