FACT++  1.0
bool ServiceList::HasService ( const std::string &  service) const

Definition at line 501 of file ServiceList.cc.

References HasService().

502 {
503  const size_t p = svc.find_first_of('/');
504  if (p==string::npos)
505  return false;
506 
507  return HasService(svc.substr(0, p), svc.substr(p+1));
508 }
bool HasService(const std::string &server, const std::string &service) const
Definition: ServiceList.cc:491

+ Here is the call graph for this function: