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

« back to all changes in this revision

Viewing changes to include/thmlosis.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: thmlosis.h,v 1.6 2003/02/20 07:25:20 scribe Exp $
 
4
 *
 
5
 * Copyright 2003 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 THMLOSIS_H
 
22
#define THMLOSIS_H
 
23
 
 
24
#include <swfilter.h>
 
25
 
 
26
SWORD_NAMESPACE_START
 
27
 
 
28
/** this filter converts ThML text to OSIS text
 
29
 */
 
30
class SWDLLEXPORT ThMLOSIS : public SWFilter {
 
31
protected:
 
32
        virtual const char *convertToOSIS(const char *, const SWKey *key);
 
33
public:
 
34
        ThMLOSIS();
 
35
        virtual ~ThMLOSIS();
 
36
        virtual char processText(SWBuf &text, const SWKey *key = 0, const SWModule *module = 0);
 
37
};
 
38
 
 
39
SWORD_NAMESPACE_END
 
40
#endif /* THMLOSIS_H */