You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bibletime/bibletime/backend/bt_plainhtml.h

42 lines
837 B

/*********
*
* 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 <swkey.h>
#include <swmodule.h>
#include <swfilter.h>
//#include <plainhtml.h>
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