Changeset 11253 for trunk/FACT++/src/fscctrl.cc
- Timestamp:
- 07/05/11 10:24:02 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/fscctrl.cc
r11251 r11253 518 518 } 519 519 520 bool SetConfiguration(const Configuration &conf)520 int EvalConfiguration(const Configuration &conf) 521 521 { 522 522 SetEndpoint(conf.Get<string>("addr")); … … 524 524 fFSC.SetVerbose(!conf.Get<bool>("quiet")); 525 525 526 return true;526 return -1; 527 527 } 528 528 }; … … 557 557 // Start io_service.run to only use the commandHandler command detaching 558 558 StateMachineFSC<S, T> io_service(wout); 559 if (!io_service. SetConfiguration(conf))559 if (!io_service.EvalConfiguration(conf)) 560 560 return -1; 561 561 … … 581 581 582 582 StateMachineFSC<S, R> io_service(wout); 583 if (!io_service. SetConfiguration(conf))583 if (!io_service.EvalConfiguration(conf)) 584 584 return -1; 585 585
Note:
See TracChangeset
for help on using the changeset viewer.