diff options
author | danglassey <danglassey> | 2002-08-14 09:55:38 +0000 |
---|---|---|
committer | danglassey <danglassey> | 2002-08-14 09:55:38 +0000 |
commit | 6d6973e035aac5ec1676efccd5b8ada70c40b639 (patch) | |
tree | 4e92da327f60a083fe610e6b68d016434653b5b4 /testlib.cpp | |
parent | c9458897ebbb739d8db83c80e06512d8a612f743 (diff) | |
download | sword-sf-cvs-6d6973e035aac5ec1676efccd5b8ada70c40b639.tar.gz |
Initial import for syncing from crosswire CVS
Diffstat (limited to 'testlib.cpp')
-rw-r--r-- | testlib.cpp | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/testlib.cpp b/testlib.cpp deleted file mode 100644 index c20c8db..0000000 --- a/testlib.cpp +++ /dev/null @@ -1,55 +0,0 @@ -#include <iostream.h> -#include <versekey.h> -#include <rawtext.h> -//#include <zcom.h> -#include <rawcom.h> -//#include <rawgbf.h> -//#include <rawfiles.h> - - -int main(int argc, char **argv) -{ - int loop; - int max; - VerseKey mykey; -// RawText text("src/modules/texts/rawtext/sve/", "Sven Text", "Sven Text"); - RawText text("src/modules/texts/rawtext/webster/", "Webster", "Webster Text"); -// RawText text("src/modules/texts/rawtext/orthjbc/", "Webster", "Webster Text"); -// RawGBF text("src/modules/texts/rawgbf/newtext/", "WEB", "World English Bible"); -// RawText text("src/modules/texts/rawtext/kjv/", "KJV", "KJV Text"); -// RawText text("src/modules/texts/rawtext/vnt/", "VNT", "Valera Spanish NT"); -// RawCom commentary("src/modules/comments/rawcom/rwp/", "RWP", "Robertson's Word Pictures"); - RawCom commentary("src/modules/comments/rawcom/mhc/", "MHC", "Matthew Henry's Commentary on the Whole Bible"); -// RawFiles commentary("src/modules/comments/rawfiles/personal/", "MHC", "Matthew Henry's Commentary on the Whole Bible"); - - - if (argc > 3) - mykey.AutoNormalize(0); // Turn off autonormalize if 3 args to allow for intros - // This is kludgy but at lease you can try it - // with something like: sword "Matthew 1:0" 1 1 - - - mykey = (argc < 2) ? "James 1:19" : argv[1]; - mykey.Persist(1); - text.SetKey(mykey); - commentary.SetKey(mykey); - - - max = (argc < 3) ? 1 : atoi(argv[2]); - - - cout << "\n"; - - - for (loop = 0; loop < max; loop++) { - cout << (SWKey &)text << ":\n"; - text.Display(); - cout << "\n"; - cout << "-------------\n"; - commentary.Display(); - cout << "\n"; - cout << "==========================\n"; - mykey++; - } - cout << "\n\n"; -} |