aboutsummaryrefslogtreecommitdiff
path: root/sword.h
diff options
context:
space:
mode:
authorYour Name <you@example.com>2022-02-19 10:54:35 -0500
committerYour Name <you@example.com>2022-02-19 10:54:35 -0500
commit4f26d55e01f9424ba5660cb27076eafba4c88b21 (patch)
tree41131c34e6610cd1b3c52b2b771ef550134a725d /sword.h
parenta5cdc506789ac6aeb6f4256b892fedf046fff06c (diff)
downloadbiblereader-4f26d55e01f9424ba5660cb27076eafba4c88b21.tar.gz
biblereader-4f26d55e01f9424ba5660cb27076eafba4c88b21.tar.bz2
biblereader-4f26d55e01f9424ba5660cb27076eafba4c88b21.zip
Reorganized sources
Diffstat (limited to 'sword.h')
-rw-r--r--sword.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/sword.h b/sword.h
deleted file mode 100644
index 1cd7f61..0000000
--- a/sword.h
+++ /dev/null
@@ -1,29 +0,0 @@
-#pragma once
-#include <gtkmm.h>
-#include <vector>
-
-using namespace::std;
-
-class Sword {
-public:
- Sword();
- virtual ~Sword();
-
- std::vector<std::string> getModules(void);
- std::vector<std::string> getBooks(void);
- void setModule(std::string modName);
- void fillBuffer(std::string ref, Glib::RefPtr<Gtk::TextBuffer> buf);
- void getConfig(std::string book, int chapter, struct config *conf);
-
-protected:
- std::string currMod;
-
-};
-
-struct config {
- int chapter;
- std::string book;
- std::string bookFull;
- int maxChapter;
- std::string version;
-};