FACT++  1.0
void FactGui::SubscribeService ( const string &  service)
inlineprivate

Definition at line 403 of file FactGui.h.

404  {
405  if (fServices.find(service)!=fServices.end())
406  {
407  cerr << "ERROR - We are already subscribed to " << service << endl;
408  return;
409  }
410 
411  fServices[service] = new DimStampedInfo(service.c_str(), (void*)NULL, 0, this);
412  }
map< string, DimInfo * > fServices
Definition: FactGui.h:135