FACT++  1.0
void SetupConfiguration ( Configuration conf)

Definition at line 297 of file evtserver.cc.

References Configuration::AddOptions().

Referenced by main().

298 {
299  po::options_description control("Event server options");
300  control.add_options()
301  ("aux-path", var<string>("/fact/aux"), "The root path to the auxilary files.")
302  ("out-path", var<string>("www/smartfact/data"), "Path where the output camera file should be written.")
303  ("interval", var<uint32_t>(5000), "Interval of updates in milliseconds.")
304  ;
305 
306  conf.AddOptions(control);
307 }
void AddOptions(const po::options_description &opt, bool visible=true)
Definition: Configuration.h:92

+ Here is the call graph for this function:

+ Here is the caller graph for this function: