summaryrefslogtreecommitdiff
path: root/utilities/diatheke/osiscgi.h
diff options
context:
space:
mode:
Diffstat (limited to 'utilities/diatheke/osiscgi.h')
-rw-r--r--utilities/diatheke/osiscgi.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/utilities/diatheke/osiscgi.h b/utilities/diatheke/osiscgi.h
new file mode 100644
index 0000000..c6c6411
--- /dev/null
+++ b/utilities/diatheke/osiscgi.h
@@ -0,0 +1,48 @@
+/***************************************************************************
+ osiscgi.h - OSIS to Diatheke/CGI format
+ -------------------
+ begin : 2003-10-21
+ copyright : 2003 by CrossWire Bible Society
+ ***************************************************************************/
+
+/***************************************************************************
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ ***************************************************************************/
+
+#ifndef OSISCGI_H
+#define OSISCGI_H
+
+#include <swbasicfilter.h>
+
+#include <defs.h>
+
+SWORD_NAMESPACE_START
+
+/** this filter converts OSIS text to Diatheke/CGI format
+ */
+class SWDLLEXPORT OSISCGI : public SWBasicFilter {
+private:
+protected:
+ class MyUserData : public BasicFilterUserData {
+ public:
+ bool osisQToTick;
+ bool inBold;
+ SWBuf w;
+ SWBuf fn;
+ MyUserData(const SWModule *module, const SWKey *key);
+ };
+ virtual BasicFilterUserData *createUserData(const SWModule *module, const SWKey *key) {
+ return new MyUserData(module, key);
+ }
+ virtual bool handleToken(SWBuf &buf, const char *token, BasicFilterUserData *userData);
+public:
+ OSISCGI();
+};
+
+SWORD_NAMESPACE_END
+#endif