FACT++  1.0
void ErrorHandler::errorHandler ( int  severity,
int  code,
char *  msg 
)
inlineprivatevirtual

Implements DimErrorHandler.

Definition at line 11 of file test_serverFernando.cxx.

References DimServer::getClientName(), and DimServer::getClientServices().

12  {
13  int index = 0;
14  char **services;
15  cout << severity << " " << msg << endl;
16  services = DimServer::getClientServices();
17  cout<< "from "<< DimServer::getClientName() << " services:" << endl;
18  while(services[index])
19  {
20  cout << services[index] << endl;
21  index++;
22  }
23  }
static char * getClientName()
Definition: discpp.cxx:579
static char ** getClientServices()
Definition: discpp.cxx:601

+ Here is the call graph for this function: