~ubuntu-branches/debian/squeeze/sword/squeeze

« back to all changes in this revision

Viewing changes to include/thmlgbf.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Glassey
  • Date: 2004-01-15 15:50:07 UTC
  • Revision ID: james.westby@ubuntu.com-20040115155007-n9mz4x0zxrs1isd3
Tags: upstream-1.5.7
ImportĀ upstreamĀ versionĀ 1.5.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/******************************************************************************
 
2
 *
 
3
 * $Id: thmlgbf.h,v 1.7 2003/07/26 23:10:55 chrislit Exp $
 
4
 *
 
5
 * Copyright 1998 CrossWire Bible Society (http://www.crosswire.org)
 
6
 *      CrossWire Bible Society
 
7
 *      P. O. Box 2528
 
8
 *      Tempe, AZ  85280-2528
 
9
 *
 
10
 * This program is free software; you can redistribute it and/or modify it
 
11
 * under the terms of the GNU General Public License as published by the
 
12
 * Free Software Foundation version 2.
 
13
 *
 
14
 * This program is distributed in the hope that it will be useful, but
 
15
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
17
 * General Public License for more details.
 
18
 *
 
19
 */
 
20
 
 
21
#ifndef THMLGBF_H
 
22
#define THMLGBF_H
 
23
 
 
24
#include <swfilter.h>
 
25
 
 
26
SWORD_NAMESPACE_START
 
27
 
 
28
/** this filter converts ThML text to GBF text
 
29
 */
 
30
class SWDLLEXPORT ThMLGBF : public SWFilter {
 
31
protected:
 
32
        virtual char processText(SWBuf &text, const SWKey *key = 0, const SWModule *module = 0);
 
33
public:
 
34
        ThMLGBF();
 
35
};
 
36
 
 
37
SWORD_NAMESPACE_END
 
38
#endif