diff options
Diffstat (limited to 'tests/modtest.cpp')
-rw-r--r-- | tests/modtest.cpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/modtest.cpp b/tests/modtest.cpp new file mode 100644 index 0000000..c65cb12 --- /dev/null +++ b/tests/modtest.cpp @@ -0,0 +1,28 @@ +#include <swmgr.h> +#include <swtext.h> +#include <iostream> + +int main(int argc, char **argv) { + SWMgr mymgr; + ModMap::iterator it; + SWModule *module; + + for (it = mymgr.Modules.begin(); it != mymgr.Modules.end(); it++) { + module = it->second; + if (!strcmp(module->Type(), "Biblical Texts")) { + std::cout << module->Name() << "\n"; + for (*module = TOP; (!module->Key().Error()); ((VerseKey *)&module->Key())->Book(((VerseKey *)&module->Key())->Book()+1)) { + std::cout << module->KeyText() << "\n"; + } + } + + if (!strcmp(module->Type(), "Commentaries")) { + std::cout << module->Name() << "\n"; + for (*module = TOP; (!module->Error()); (*module)--) { + std::cout << module->KeyText() << "\n"; + } + + } + } + return 0; +} |