summaryrefslogtreecommitdiff
path: root/tests/refsystest.cpp
diff options
context:
space:
mode:
authorRoberto C. Sanchez <roberto@connexer.com>2014-03-29 10:53:59 -0400
committerRoberto C. Sanchez <roberto@connexer.com>2014-03-29 10:53:59 -0400
commit03134fa5f6f25d92724ce4c183f9bbe12a9e37dc (patch)
tree847326a4de82f0241ac87cbbc427a1b92a696a02 /tests/refsystest.cpp
parentd7469385b05b9510338407fa123e9ad090f80af6 (diff)
Imported Upstream version 1.5.11
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;
+}