Changeset 11390
- Timestamp:
- 07/13/11 23:27:36 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/Main.h
r11389 r11390 61 61 62 62 const Time now; 63 io_service.Write(now, " ---------------------------- Program ----------------------------");64 io_service.Write(now, " Program: "PACKAGE_STRING" ("+conf.GetName()+")");65 io_service.Write(now, " Compiled: "__DATE__" "__TIME__);66 io_service.Write(now, " Revision: "REVISION);67 io_service.Write(now, " Contact: "PACKAGE_BUGREPORT);68 io_service.Write(now, " URL: "PACKAGE_URL);69 io_service.Write(now, " Start: "+now.GetAsStr("%c"));70 io_service.Write(now, " ---------------------------- Options ----------------------------");63 io_service.Write(now, "/--------------------------- Program ----------------------------"); 64 io_service.Write(now, "| Program: "PACKAGE_STRING" ("+conf.GetName()+")"); 65 io_service.Write(now, "| Compiled: "__DATE__" "__TIME__); 66 io_service.Write(now, "| Revision: "REVISION); 67 io_service.Write(now, "| Contact: "PACKAGE_BUGREPORT); 68 io_service.Write(now, "| URL: "PACKAGE_URL); 69 io_service.Write(now, "| Start: "+now.GetAsStr("%c")); 70 io_service.Write(now, "\\--------------------------- Options ----------------------------"); 71 71 const multimap<string,string> map = conf.GetOptions(); 72 72 for (multimap<string,string>::const_iterator it=map.begin(); it!=map.end(); it++) 73 io_service.Write(now, " ->"+it->first+" = "+it->second);74 io_service.Write(now, " ------------------------ Evaluating options ---------------------");73 io_service.Write(now, ": "+it->first+" = "+it->second); 74 io_service.Write(now, "\\----------------------- Evaluating options ---------------------"); 75 75 76 76 const int rc = io_service.EvalConfiguration(conf);
Note:
See TracChangeset
for help on using the changeset viewer.