summaryrefslogtreecommitdiff
path: root/src/backend/drivers/cswordcommentarymoduleinfo.h
blob: a297538876fe733eda157d08363d1d53bb5f8113 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*********
*
* This file is part of BibleTime's source code, http://www.bibletime.info/.
*
* Copyright 1999-2008 by the BibleTime developers.
* The BibleTime source code is licensed under the GNU General Public License version 2.0.
*
**********/

#ifndef CSWORDCOMMENTARYMODULEINFO_H
#define CSWORDCOMMENTARYMODULEINFO_H

#include "backend/drivers/cswordbiblemoduleinfo.h"


/** Commentary module implementation.
 * This CSwordModule implementation provides access to Sword's commentary modules.
 * @author The BibleTime team
 * @version $Id: cswordcommentarymoduleinfo.h,v 1.13 2006/02/25 11:38:15 joachim Exp $
 */

class CSwordCommentaryModuleInfo : public CSwordBibleModuleInfo {

    public:
        CSwordCommentaryModuleInfo( sword::SWModule* module, CSwordBackend* const );
        ~CSwordCommentaryModuleInfo();
        /** Reimplementation to return the commentary type.
        */
        virtual CSwordModuleInfo::ModuleType type() const;
        /** Reimplementation to clone the current object.
        */
        virtual CSwordModuleInfo* clone();
        /**
        * Returns true if this module may be written by the write display windows.
        */
        virtual bool isWritable() const;
};

inline CSwordModuleInfo::ModuleType CSwordCommentaryModuleInfo::type() const {
    return CSwordModuleInfo::Commentary;
}

#endif