summaryrefslogtreecommitdiffstats
path: root/bibletime/backend/cswordcommentarymoduleinfo.h
blob: c387ede975485ab978fc9dbc3138b05677b2208d (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
44
45
/*********
*
* This file is part of BibleTime's source code, http://www.bibletime.info/.
*
* Copyright 1999-2006 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

//own includes
#include "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 = CPointers::backend() );
	~CSwordCommentaryModuleInfo();
	/** Reimplementation to return the commentary type.
	*/
	virtual const 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 const bool isWritable() const;
};

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

#endif