FACT++  1.0
void SetupConfiguration ( Configuration conf)

Definition at line 548 of file gcn.cc.

References Configuration::AddOptions(), and po_bool().

Referenced by main().

549 {
550  po::options_description control("FTM control options");
551  control.add_options()
552  ("no-dim", po_bool(), "Disable dim services")
553  ("addr,a", vars<string>(), "Network addresses of GCN server")
554  ("quiet,q", po_bool(true), "Disable printing contents of all received messages (except dynamic data) in clear text.")
555  ;
556 
557  conf.AddOptions(control);
558 }
void AddOptions(const po::options_description &opt, bool visible=true)
Definition: Configuration.h:92
po::typed_value< bool > * po_bool(bool def=false)

+ Here is the call graph for this function:

+ Here is the caller graph for this function: