00001 /****************************************************************************** 00002 * 00003 * $Id: osisplain_8h-source.html,v 1.1 2003/02/28 21:21:47 mgruner Exp $ 00004 * 00005 * Copyright 1998 CrossWire Bible Society (http://www.crosswire.org) 00006 * CrossWire Bible Society 00007 * P. O. Box 2528 00008 * Tempe, AZ 85280-2528 00009 * 00010 * This program is free software; you can redistribute it and/or modify it 00011 * under the terms of the GNU General Public License as published by the 00012 * Free Software Foundation version 2. 00013 * 00014 * This program is distributed in the hope that it will be useful, but 00015 * WITHOUT ANY WARRANTY; without even the implied warranty of 00016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00017 * General Public License for more details. 00018 * 00019 */ 00020 00021 #ifndef OSISPLAIN_H 00022 #define OSISPLAIN_H 00023 00024 #include <swbasicfilter.h> 00025 00026 #include <string> 00027 00028 using std::string; 00029 00030 SWORD_NAMESPACE_START 00031 00034 class SWDLLEXPORT OSISPlain : public SWBasicFilter { 00035 public: 00036 string tagData; 00037 string::size_type pos1; 00038 string::size_type pos2; 00039 00040 protected: 00041 virtual bool handleToken(SWBuf &buf, const char *token, DualStringMap &userData); 00042 public: 00043 OSISPlain(); 00044 }; 00045 00046 SWORD_NAMESPACE_END 00047 #endif