summaryrefslogtreecommitdiff
path: root/src/mobile/bibletime.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mobile/bibletime.h')
-rw-r--r--src/mobile/bibletime.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/mobile/bibletime.h b/src/mobile/bibletime.h
new file mode 100644
index 0000000..b424571
--- /dev/null
+++ b/src/mobile/bibletime.h
@@ -0,0 +1,31 @@
+/*********
+*
+* In the name of the Father, and of the Son, and of the Holy Spirit.
+*
+* This file is part of BibleTime's source code, http://www.bibletime.info/.
+*
+* Copyright 1999-2014 by the BibleTime developers.
+* The BibleTime source code is licensed under the GNU General Public License
+* version 2.0.
+*
+**********/
+
+#pragma once
+
+#include <QObject>
+
+namespace btm {
+
+class BibleTime : public QObject {
+ Q_OBJECT
+
+public:
+ BibleTime(QObject* parent = 0);
+
+private:
+ void initBackends();
+ void initSwordConfigFile();
+
+};
+
+}