summaryrefslogtreecommitdiff
path: root/bibletime/backend/cswordbookmoduleinfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'bibletime/backend/cswordbookmoduleinfo.h')
-rw-r--r--bibletime/backend/cswordbookmoduleinfo.h62
1 files changed, 0 insertions, 62 deletions
diff --git a/bibletime/backend/cswordbookmoduleinfo.h b/bibletime/backend/cswordbookmoduleinfo.h
deleted file mode 100644
index 0d65231..0000000
--- a/bibletime/backend/cswordbookmoduleinfo.h
+++ /dev/null
@@ -1,62 +0,0 @@
-/***************************************************************************
- cswordbookmoduleinfo.h - description
- -------------------
- begin : Thu Jan 24 2002
- copyright : (C) 2002 by The BibleTime team
- email : info@bibletime.de
- ***************************************************************************/
-
-/***************************************************************************
- * *
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License, or *
- * (at your option) any later version. *
- * *
- ***************************************************************************/
-
-#ifndef CSWORDGENBOOKMODULEINFO_H
-#define CSWORDGENBOOKMODULEINFO_H
-
-//BibleTime includes
-#include "cswordmoduleinfo.h"
-
-//Sword includes
-#include <treekeyidx.h>
-
-
-/** Class for generic book support
- * @author The BibleTime team
- */
-class CSwordBookModuleInfo : public CSwordModuleInfo {
-public:
- CSwordBookModuleInfo( sword::SWModule* module, CSwordBackend* const = CPointers::backend() );
- CSwordBookModuleInfo( const CSwordBookModuleInfo& m );
- ~CSwordBookModuleInfo();
- /**
- * Returns the type of the module.
- */
- virtual const CSwordModuleInfo::ModuleType type() const;
- /**
- * Returns the maximal depth of sections and subsections.
- */
- const int depth();
- /**
- * @return A treekey filled with the structure of this module. Don't delete the returned key because it's casted from the module object.
- */
- sword::TreeKeyIdx* const tree() const;
-
-private:
- /**
- * A recursive helper function to help computng the module depth!
- */
- void computeDepth(sword::TreeKeyIdx* key, int level = 0 );
- int m_depth;
-};
-
-inline const CSwordBookModuleInfo::ModuleType CSwordBookModuleInfo::type() const {
- return CSwordModuleInfo::GenericBook;
-}
-
-
-#endif