summaryrefslogtreecommitdiff
path: root/src/mgr/versemgr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mgr/versemgr.cpp')
-rw-r--r--src/mgr/versemgr.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mgr/versemgr.cpp b/src/mgr/versemgr.cpp
index 0673746..90c2415 100644
--- a/src/mgr/versemgr.cpp
+++ b/src/mgr/versemgr.cpp
@@ -35,6 +35,10 @@
#include <canon_kjva.h> // KJV + Apocrypha v11n system
#include <canon_nrsv.h> // NRSV v11n system
#include <canon_nrsva.h> // NRSVA + Apocrypha v11n system
+#include <canon_synodal.h> // Russian Synodal v11n system
+#include <canon_vulg.h> // Vulgate v11n system
+#include <canon_german.h> // German v11n system
+#include <canon_luther.h> // Luther v11n system
using std::vector;
using std::map;
@@ -53,6 +57,10 @@ VerseMgr *VerseMgr::getSystemVerseMgr() {
systemVerseMgr->registerVersificationSystem("KJVA", otbooks_kjva, ntbooks, vm_kjva);
systemVerseMgr->registerVersificationSystem("NRSV", otbooks, ntbooks, vm_nrsv);
systemVerseMgr->registerVersificationSystem("NRSVA", otbooks_nrsva, ntbooks, vm_nrsva);
+ systemVerseMgr->registerVersificationSystem("Synodal", otbooks_synodal, ntbooks_synodal, vm_synodal);
+ systemVerseMgr->registerVersificationSystem("Vulg", otbooks_vulg, ntbooks_vulg, vm_vulg);
+ systemVerseMgr->registerVersificationSystem("German", otbooks_german, ntbooks_german, vm_german);
+ systemVerseMgr->registerVersificationSystem("Luther", otbooks_luther, ntbooks_luther, vm_luther);
}
return systemVerseMgr;
}