~ubuntu-branches/ubuntu/intrepid/bibletime/intrepid

« back to all changes in this revision

Viewing changes to bibletime/backend/bt_plainhtml.h

  • Committer: Bazaar Package Importer
  • Author(s): Ralph Janke
  • Date: 2008-05-10 15:18:16 UTC
  • mfrom: (1.1.6 upstream) (3.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080510151816-bqp8y1to705zd0fm
Tags: 1.6.5.1-1
* New upstream version (Closes: #441161, #271502)
* fixes for new autotools and gcc 4.3 (Closes: #407291)
* added poxml to Build-Depends
* No DFSG necessary anymore since biblestudy howto has 
  now Commons Licence 
* Added libclucene-dev to dev-depends (Closes: #436677)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*********
 
2
*
 
3
* This file is part of BibleTime's source code, http://www.bibletime.info/.
 
4
*
 
5
* Copyright 1999-2006 by the BibleTime developers.
 
6
* The BibleTime source code is licensed under the GNU General Public License version 2.0.
 
7
*
 
8
**********/
 
9
 
 
10
 
 
11
 
 
12
/* $Header: /cvsroot/bibletime/bibletime/bibletime/backend/bt_plainhtml.h,v 1.3 2007/06/29 22:47:14 joachim Exp $ */
 
13
/* $Revision: 1.3 $ */
 
14
 
 
15
#ifndef BT_PLAINHTML_H
 
16
#define BT_PLAINHTML_H
 
17
 
 
18
//Sword includes
 
19
#include <swkey.h>
 
20
#include <swmodule.h>
 
21
#include <swfilter.h>
 
22
//#include <plainhtml.h>
 
23
 
 
24
namespace Filters {
 
25
 
 
26
        /** Plain to HTML filter,
 
27
        * This filter converts Plain Text into HTML
 
28
        */
 
29
 
 
30
class BT_PLAINHTML : public sword::SWFilter{
 
31
 
 
32
protected:
 
33
 
 
34
public:
 
35
                BT_PLAINHTML();
 
36
                virtual char processText(sword::SWBuf& buf, const sword::SWKey*, const sword::SWModule * = 0);
 
37
        };
 
38
 
 
39
}
 
40
 
 
41
#endif