FACT++  1.0
vector< string > ServiceList::GetServiceList ( ) const

Definition at line 341 of file ServiceList.cc.

References fServerList, and i.

Referenced by SetHandler().

342 {
343  vector<string> vec;
344  for (ServerMap::const_iterator i=fServerList.begin(); i!=fServerList.end(); i++)
345  {
346  const string server = i->first;
347 
348  const vector<string> v = GetServiceList(server);
349 
350  for (vector<string>::const_iterator s=v.begin(); s<v.end(); s++)
351  vec.push_back(server+"/"+*s);
352  }
353 
354  return vec;
355 }
ServerMap fServerList
A filter for the type of the services to be collected, e.g. CMD.
Definition: ServiceList.h:29
int i
Definition: db_dim_client.c:21
std::vector< std::string > GetServiceList() const
Definition: ServiceList.cc:341

+ Here is the caller graph for this function: