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

« back to all changes in this revision

Viewing changes to include/cdsourcemgr.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
 *  cdsourcemgr.h       - definition of class SWCacheMgr used to provide an interface for
 
3
 *      caching information of module sources
 
4
 *
 
5
 * $Id: cdsourcemgr.h,v 1.1 2002/10/23 23:13:35 dglassey Exp $
 
6
 *
 
7
 * Copyright 2002 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 CDSOURCEMGR_H
 
24
#define CDSOURCEMGR_H
 
25
 
 
26
 #include <defs.h>
 
27
 #include "swsourcemgr.h"
 
28
 
 
29
SWORD_NAMESPACE_START
 
30
 
 
31
class SWDLLEXPORT CDSourceMgr: public SWSourceMgr {
 
32
public: 
 
33
        CDSourceMgr(const char *iConfigPath);
 
34
        char Refresh();
 
35
}
 
36
 
 
37
CDSourceMgr *DetectCD(const char *iCDPath);
 
38
 
 
39
SWORD_NAMESPACE_END
 
40
#endif