Changeset 3028 in Sophya for trunk/SophyaProg/PrgUtil/scanppf.cc
- Timestamp:
- Jul 17, 2006, 2:41:14 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaProg/PrgUtil/scanppf.cc
r2662 r3028 38 38 csh> scanppf -h 39 39 PIOPersist::Initialize() Starting Sophya Persistence management service 40 SOPHYA Version 1.8 Revision 40 (V_Avr2005) -- Apr 7 2005 12:00:24cxx40 SOPHYA Version 2.0 Revision 0 (V_Jul2006) -- Jul 17 2006 14:13:27 cxx 41 41 Usage: scanppf [flags] filename 42 flags = -s -n -a0 -a1 -a2 -a3 -lh -lho 42 flags = -s -n -a0 -a1 -a2 -a3 -lh -lho -lmod 43 43 -s[=default} : Sequential reading of objects 44 44 -n : Object reading at NameTags … … 46 46 -lh : List PPersist handler classes 47 47 -lho : List PPersist handler and dataobj classes 48 -lmod : List initialized/registered modules 48 49 49 50 \endverbatim … … 62 63 if ((narg < 2) || (strcmp(arg[1],"-h") == 0) ) { 63 64 cout << " Usage: scanppf [flags] filename \n" 64 << " flags = -s -n -a0 -a1 -a2 -a3 -lh -lho \n"65 << " flags = -s -n -a0 -a1 -a2 -a3 -lh -lho -lmod \n" 65 66 << " -s[=default} : Sequential reading of objects \n" 66 67 << " -n : Object reading at NameTags \n" 67 68 << " -a0...a3 : Tag List with PInPersist.AnalyseTags(0...3) \n" 68 69 << " -lh : List PPersist handler classes \n" 69 << " -lho : List PPersist handler and dataobj classes \n" << endl; 70 << " -lho : List PPersist handler and dataobj classes \n" 71 << " -lmod : List initialized/registered modules \n" << endl; 70 72 return(0); 71 73 } … … 91 93 PIOPersist::ListPPHandlers(); 92 94 PIOPersist::ListDataObjClasses(); 95 } 96 else if (opt == "-lmod") { 97 cout << " --- scanppf : List of registered module names and version --- " << endl; 98 SophyaInitiator::ListModules(cout); 93 99 } 94 100 else {
Note:
See TracChangeset
for help on using the changeset viewer.