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

« back to all changes in this revision

Viewing changes to include/gbffootnotes.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: gbffootnotes.h,v 1.13 2003/07/05 04:58:42 scribe 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 GBFFOOTNOTES_H
 
22
#define GBFFOOTNOTES_H
 
23
 
 
24
#include <swoptfilter.h>
 
25
 
 
26
SWORD_NAMESPACE_START
 
27
 
 
28
/** This Filter shows/hides footnotes in a GBF text
 
29
  */
 
30
class SWDLLEXPORT GBFFootnotes : public SWOptionFilter {
 
31
public:
 
32
        GBFFootnotes();
 
33
        virtual ~GBFFootnotes();
 
34
        virtual char processText(SWBuf &text, const SWKey *key = 0, const SWModule *module = 0);
 
35
};
 
36
 
 
37
SWORD_NAMESPACE_END
 
38
#endif