summaryrefslogtreecommitdiff
path: root/TAO/Benchmark/Marshal_Test/Orbix/server.cpp
blob: dd6902a012d08faf3f1d922823265035b35cf494 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "benchmark/driver.h"
#include "orbix_marshal_server.h"

int main (int argc, char *argv [])
{
  // instantiate a DRIVER with the Orbix_Client_Proxy as the template
  CORBA_Benchmark_Driver<Orbix_Marshal_Server_Proxy>  driver (new
							     Orbix_Marshal_Server_Proxy ());

  // let the driver do everything for us so that we remain very simple
  return driver.run (argc, argv);
}