Definition at line 431 of file mainTrecSearch.cpp. References Impala::CmdOptions::GetInstance(), Impala::CmdOptions::GetInt(), Impala::CmdOptions::GetString(), ILOG_DEBUG, ILOG_INFO, and mVideolympicsClient. Referenced by InitData(). 00432 { 00433 CmdOptions& options = CmdOptions::GetInstance(); 00434 // VideOlympics showcase event contest server connection 00435 if (!options.GetString("videolympicsServer").empty()) 00436 { 00437 ILOG_INFO("VideOlympics contest client: enabled."); 00438 mVideolympicsClient = 00439 new Application::Videolympics::VideolympicsClient( 00440 options.GetString("videolympicsServer"), 00441 options.GetInt("videolympicsPort"), 00442 options.GetInt("videolympicsTeam")); 00443 } 00444 else 00445 { 00446 mVideolympicsClient = NULL; 00447 ILOG_DEBUG("VideOlympics contest client: disabled."); 00448 } 00449 }
Here is the call graph for this function:
|