aboutsummaryrefslogtreecommitdiff
path: root/src/sword.h
diff options
context:
space:
mode:
authorYour Name <you@example.com>2022-04-19 17:29:34 -0400
committerYour Name <you@example.com>2022-04-19 17:29:34 -0400
commit7fc9d0c19efb22cb02af7f34c8473c960ec2d02e (patch)
treef681ac174f584996734f0c97acca25cdf4b925d5 /src/sword.h
parentff7307324ce69f3d55aa935db5aa0f1802785115 (diff)
downloadbiblereader-7fc9d0c19efb22cb02af7f34c8473c960ec2d02e.tar.gz
biblereader-7fc9d0c19efb22cb02af7f34c8473c960ec2d02e.tar.bz2
biblereader-7fc9d0c19efb22cb02af7f34c8473c960ec2d02e.zip
Code refactoring
Diffstat (limited to 'src/sword.h')
-rw-r--r--src/sword.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/sword.h b/src/sword.h
deleted file mode 100644
index 1cd7f61..0000000
--- a/src/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;
-};