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

« back to all changes in this revision

Viewing changes to include/rawgbf.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
 *  rawgbf.h   - code for class 'RawGBF'- a module that reads raw text files:
 
3
 *                ot and nt using indexs ??.bks ??.cps ??.vss
 
4
 *
 
5
 * $Id: rawgbf.h,v 1.5 2002/10/01 19:52:40 dglassey Exp $
 
6
 *
 
7
 * Copyright 1998 CrossWire Bible Society (http://www.crosswire.org)
 
8
 *      CrossWire Bible Society
 
9
 *      P. O. Box 2528
 
10
 *      Tempe, AZ  85280-2528
 
11
 *
 
12
 * This program is free software; you can redistribute it and/or modify it
 
13
 * under the terms of the GNU General Public License as published by the
 
14
 * Free Software Foundation version 2.
 
15
 *
 
16
 * This program is distributed in the hope that it will be useful, but
 
17
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 
18
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
19
 * General Public License for more details.
 
20
 *
 
21
 */
 
22
 
 
23
#ifndef RAWGBF_H
 
24
#define RAWGBF_H
 
25
 
 
26
#include <rawverse.h>
 
27
#include <swtext.h>
 
28
#include <swfilter.h>
 
29
 
 
30
#include <defs.h>
 
31
 
 
32
SWORD_NAMESPACE_START
 
33
 
 
34
class SWDLLEXPORT RawGBF:public SWText, public RawVerse
 
35
{
 
36
 
 
37
public:
 
38
  
 
39
    
 
40
    RawGBF (const char *ipath, const char *iname = 0, const char *idesc =
 
41
            0, SWDisplay * idisp = 0);
 
42
    virtual ~ RawGBF ();
 
43
  virtual operator char *();
 
44
};
 
45
 
 
46
SWORD_NAMESPACE_END
 
47
#endif