[sword-cvs] sword/include osisplain.h,1.3,1.4 thmlgbf.h,1.6,1.7 thmlplain.h,1.6,1.7 thmlrtf.h,1.7,1.8

sword@www.crosswire.org sword@www.crosswire.org
Sat, 26 Jul 2003 16:10:57 -0700


Update of /usr/local/cvsroot/sword/include
In directory www:/tmp/cvs-serv17164

Modified Files:
	osisplain.h thmlgbf.h thmlplain.h thmlrtf.h 
Log Message:
extraneous whitespace removal

Index: osisplain.h
===================================================================
RCS file: /usr/local/cvsroot/sword/include/osisplain.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- osisplain.h	27 Jun 2003 01:41:06 -0000	1.3
+++ osisplain.h	26 Jul 2003 23:10:55 -0000	1.4
@@ -31,6 +31,7 @@
 public:
 protected:
 	virtual bool handleToken(SWBuf &buf, const char *token, DualStringMap &userData);
+        virtual char processText(SWBuf &text, const SWKey *key, const SWModule *module);
 public:
 	OSISPlain();
 };

Index: thmlgbf.h
===================================================================
RCS file: /usr/local/cvsroot/sword/include/thmlgbf.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- thmlgbf.h	20 Feb 2003 07:25:20 -0000	1.6
+++ thmlgbf.h	26 Jul 2003 23:10:55 -0000	1.7
@@ -28,9 +28,10 @@
 /** this filter converts ThML text to GBF text
  */
 class SWDLLEXPORT ThMLGBF : public SWFilter {
+protected:
+	virtual char processText(SWBuf &text, const SWKey *key = 0, const SWModule *module = 0);
 public:
 	ThMLGBF();
-	virtual char processText(SWBuf &text, const SWKey *key = 0, const SWModule *module = 0);
 };
 
 SWORD_NAMESPACE_END

Index: thmlplain.h
===================================================================
RCS file: /usr/local/cvsroot/sword/include/thmlplain.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- thmlplain.h	20 Feb 2003 07:25:20 -0000	1.6
+++ thmlplain.h	26 Jul 2003 23:10:55 -0000	1.7
@@ -28,9 +28,10 @@
 /** this filter converts ThML text to plain text
  */
 class SWDLLEXPORT ThMLPlain : public SWFilter {
+protected:
+	virtual char processText(SWBuf &text, const SWKey *key = 0, const SWModule *module = 0);
 public:
 	ThMLPlain();
-	virtual char processText(SWBuf &text, const SWKey *key = 0, const SWModule *module = 0);
 };
 
 SWORD_NAMESPACE_END

Index: thmlrtf.h
===================================================================
RCS file: /usr/local/cvsroot/sword/include/thmlrtf.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- thmlrtf.h	20 Feb 2003 07:25:20 -0000	1.7
+++ thmlrtf.h	26 Jul 2003 23:10:55 -0000	1.8
@@ -30,6 +30,7 @@
 class SWDLLEXPORT ThMLRTF : public SWBasicFilter {
 protected:
 	virtual bool handleToken(SWBuf &buf, const char *token, DualStringMap &userData);
+	virtual char processText(SWBuf &text, const SWKey *key = 0, const SWModule *module = 0);
 public:
 	ThMLRTF();
 };