[sword-cvs] sword/src/mgr swmgr.cpp,1.85,1.86

sword@www.crosswire.org sword@www.crosswire.org
Sat, 15 Feb 2003 23:54:54 -0700


Update of /usr/local/cvsroot/sword/src/mgr
In directory www:/tmp/cvs-serv22785/mgr

Modified Files:
	swmgr.cpp 
Log Message:
added OSISRTF & OSISPlain filters

Index: swmgr.cpp
===================================================================
RCS file: /usr/local/cvsroot/sword/src/mgr/swmgr.cpp,v
retrieving revision 1.85
retrieving revision 1.86
diff -C2 -d -r1.85 -r1.86
*** swmgr.cpp	14 Jan 2003 19:30:18 -0000	1.85
--- swmgr.cpp	16 Feb 2003 06:54:52 -0000	1.86
***************
*** 47,50 ****
--- 47,51 ----
  #include <gbfplain.h>
  #include <thmlplain.h>
+ #include <osisplain.h>
  #include <gbfstrongs.h>
  #include <gbffootnotes.h>
***************
*** 197,200 ****
--- 198,204 ----
  	thmlplain = new ThMLPlain();
  	cleanupFilters.push_back(thmlplain);
+ 
+ 	osisplain = new OSISPlain();
+ 	cleanupFilters.push_back(osisplain);
  }
  
***************
*** 911,914 ****
--- 915,921 ----
  	else if (!stricmp(sourceformat.c_str(), "ThML")) {
  		module->AddStripFilter(thmlplain);
+ 	}
+ 	else if (!stricmp(sourceformat.c_str(), "OSIS")) {
+ 		module->AddStripFilter(osisplain);
  	}