summaryrefslogtreecommitdiff
path: root/src/backend/filters/osismorphsegmentation.h
diff options
context:
space:
mode:
authorRoberto C. Sanchez <roberto@connexer.com>2014-10-21 22:48:19 -0400
committerRoberto C. Sanchez <roberto@connexer.com>2014-10-21 22:48:19 -0400
commit1af3b165c9377702ca62a64112bc089a6f575c30 (patch)
tree4df9cca5543b2cab5ca56dbb1214d7d3b1f291e3 /src/backend/filters/osismorphsegmentation.h
parent5b5fd0dce407556f98ed8edee89dc830bf1437b1 (diff)
Imported Upstream version 2.0~beta2
Diffstat (limited to 'src/backend/filters/osismorphsegmentation.h')
-rw-r--r--src/backend/filters/osismorphsegmentation.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/backend/filters/osismorphsegmentation.h b/src/backend/filters/osismorphsegmentation.h
new file mode 100644
index 0000000..e419fe2
--- /dev/null
+++ b/src/backend/filters/osismorphsegmentation.h
@@ -0,0 +1,36 @@
+/*********
+*
+* This file is part of BibleTime's source code, http://www.bibletime.info/.
+*
+* Copyright 1999-2008 by the BibleTime developers.
+* The BibleTime source code is licensed under the GNU General Public License version 2.0.
+*
+**********/
+
+#ifndef OSISMORPHSEGMENTATION_H
+#define OSISMORPHSEGMENTATION_H
+
+#include <swbuf.h>
+#include <swoptfilter.h>
+
+namespace Filters {
+
+/** This Filter shows/hides headings in a OSIS text.
+ * @author Martin Gruner
+ */
+class OSISMorphSegmentation : public sword::SWOptionFilter {
+ static const char oName[];
+ static const char oTip[];
+ static const sword::SWBuf choices[3];
+ static const sword::StringList oValues;
+
+public:
+ OSISMorphSegmentation();
+ virtual ~OSISMorphSegmentation();
+
+ virtual char processText(sword::SWBuf &text, const sword::SWKey *key = 0, const sword::SWModule *module = 0);
+};
+
+}
+
+#endif