FACT++  1.0
int main ( void  )

Definition at line 82 of file rpc_server.cxx.

References i, sprintf(), and DimServer::start().

83 {
84  RpcInt myRpcInt("TESTRPC/INT");
85  RpcInt *myRpcP;
86  RpcStruct myRpcStruct("TESTRPC/STRUCT");
87  JeffRpcStruct jeffRpcStruct("TESTJEFF");
88  int i;
89  char name[64];
90 
91  for(i = 0; i < 10; i++)
92  {
93  sprintf(name,"TESTRPC%d/INT",i);
94  myRpcP = new RpcInt(name);
95  }
96  DimServer::start("TESTRPC");
97  while(1)
98  pause();
99  return 0;
100 }
int i
Definition: db_dim_client.c:21
static void start()
Definition: discpp.cxx:512
sprintf(name1,"NewService%d", i)

+ Here is the call graph for this function: