summaryrefslogtreecommitdiff
path: root/src/modules/genbook/swgenbook.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/genbook/swgenbook.cpp')
-rw-r--r--src/modules/genbook/swgenbook.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/modules/genbook/swgenbook.cpp b/src/modules/genbook/swgenbook.cpp
new file mode 100644
index 0000000..589b0b9
--- /dev/null
+++ b/src/modules/genbook/swgenbook.cpp
@@ -0,0 +1,27 @@
+/******************************************************************************
+ * swld.cpp - code for base class 'SWLD'. SWLD is the basis for all
+ * types of Lexicon and Dictionary modules (hence the 'LD').
+ */
+
+#include <swgenbook.h>
+
+
+/******************************************************************************
+ * SWLD Constructor - Initializes data for instance of SWLD
+ *
+ * ENT: imodname - Internal name for module
+ * imoddesc - Name to display to user for module
+ * idisp - Display object to use for displaying
+ */
+
+SWGenBook::SWGenBook(const char *imodname, const char *imoddesc, SWDisplay *idisp, SWTextEncoding enc, SWTextDirection dir, SWTextMarkup mark, const char* ilang) : SWModule(imodname, imoddesc, idisp, "Generic Books", enc, dir, mark, ilang) {
+}
+
+
+/******************************************************************************
+ * SWLD Destructor - Cleans up instance of SWLD
+ */
+
+SWGenBook::~SWGenBook() {
+}
+