/********* * * This file is part of BibleTime's source code, http://www.bibletime.info/. * * Copyright 1999-2006 by the BibleTime developers. * The BibleTime source code is licensed under the GNU General Public License version 2.0. * **********/ /* $Header: /cvsroot/bibletime/bibletime/bibletime/backend/bt_plainhtml.h,v 1.3 2007/06/29 22:47:14 joachim Exp $ */ /* $Revision: 1.3 $ */ #ifndef BT_PLAINHTML_H #define BT_PLAINHTML_H //Sword includes #include #include #include //#include namespace Filters { /** Plain to HTML filter, * This filter converts Plain Text into HTML */ class BT_PLAINHTML : public sword::SWFilter{ protected: public: BT_PLAINHTML(); virtual char processText(sword::SWBuf& buf, const sword::SWKey*, const sword::SWModule * = 0); }; } #endif