summaryrefslogtreecommitdiff
path: root/tests/refsystest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/refsystest.cpp')
-rw-r--r--tests/refsystest.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/refsystest.cpp b/tests/refsystest.cpp
new file mode 100644
index 0000000..003ba7b
--- /dev/null
+++ b/tests/refsystest.cpp
@@ -0,0 +1,29 @@
+#include <stdio.h>
+#include <iostream>
+#include <versekey2.h>
+#include <stdlib.h>
+
+#include <refsysmgr.h>
+
+#ifndef NO_SWORD_NAMESPACE
+using namespace sword;
+#endif
+using std::cout;
+using std::endl;
+
+int main(int argc, char **argv)
+{
+ cout << "Default refsys: " <<
+ RefSysMgr::getSystemRefSysMgr()->getDefaultRefSysName() << endl;
+ StringList tlist = RefSysMgr::getSystemRefSysMgr()->getAvailableRefSys();
+ for (StringList::const_iterator it = tlist.begin(); it != tlist.end(); it++) {
+ cout << (*it).c_str() << endl;
+ }
+ VerseKey2 *testkey;
+ testkey = RefSysMgr::getSystemRefSysMgr()->getVerseKey("WEB", "Judith 1:1");
+ //testkey = RefSysMgr::getSystemRefSysMgr()->getVerseKey("KJV", "John 3:16");
+ if (testkey)
+ cout << testkey->getText() << endl;
+ else
+ cout << "Failed to get key" << endl;
+}