[sword-svn] r3361 - in trunk: include src/modules/filters

scribe at crosswire.org scribe at crosswire.org
Sun Mar 22 17:00:58 MST 2015


Author: scribe
Date: 2015-03-22 17:00:58 -0700 (Sun, 22 Mar 2015)
New Revision: 3361

Modified:
   trunk/include/teixhtml.h
   trunk/src/modules/filters/teixhtml.cpp
Log:
added getHeader to TEIXHTML filter

Modified: trunk/include/teixhtml.h
===================================================================
--- trunk/include/teixhtml.h	2015-03-22 23:32:33 UTC (rev 3360)
+++ trunk/include/teixhtml.h	2015-03-23 00:00:58 UTC (rev 3361)
@@ -49,6 +49,7 @@
 public:
 	TEIXHTML();
 	void setRenderNoteNumbers(bool val = true) { renderNoteNumbers = val; }
+	virtual const char *getHeader() const;
 };
 
 SWORD_NAMESPACE_END

Modified: trunk/src/modules/filters/teixhtml.cpp
===================================================================
--- trunk/src/modules/filters/teixhtml.cpp	2015-03-22 23:32:33 UTC (rev 3360)
+++ trunk/src/modules/filters/teixhtml.cpp	2015-03-23 00:00:58 UTC (rev 3361)
@@ -31,6 +31,10 @@
 
 SWORD_NAMESPACE_START
 
+const char *TEIXHTML::getHeader() const {
+	const static char *header = "";
+	return header;
+}
 
 TEIXHTML::MyUserData::MyUserData(const SWModule *module, const SWKey *key) : BasicFilterUserData(module, key) {
 	BiblicalText = false;




More information about the sword-cvs mailing list