Changeset 11253 for trunk/FACT++/src/ftmctrl.cc
- Timestamp:
- 07/05/11 10:24:02 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/ftmctrl.cc
r11251 r11253 1828 1828 } 1829 1829 1830 bool SetConfiguration(const Configuration &conf)1830 int EvalConfiguration(const Configuration &conf) 1831 1831 { 1832 1832 SetEndpoint(conf.Get<string>("addr")); … … 1838 1838 // fFTM.SetDefaultSetup(conf.Get<string>("default-setup")); 1839 1839 1840 return true;1840 return -1; 1841 1841 } 1842 1842 }; … … 1870 1870 // Start io_service.run to only use the commandHandler command detaching 1871 1871 StateMachineFTM<S, T> io_service(wout); 1872 if (!io_service. SetConfiguration(conf))1872 if (!io_service.EvalConfiguration(conf)) 1873 1873 return -1; 1874 1874 … … 1894 1894 1895 1895 StateMachineFTM<S, R> io_service(wout); 1896 if (!io_service. SetConfiguration(conf))1896 if (!io_service.EvalConfiguration(conf)) 1897 1897 return -1; 1898 1898
Note:
See TracChangeset
for help on using the changeset viewer.