summaryrefslogtreecommitdiff
path: root/TAO/Benchmark/Marshal_Test/Orbix/client.cpp
blob: d3ef24fadc0c99a98221a97bd5732aff70220d6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// $Id$

#include "benchmark/driver.h"
#include "orbix_marshal_client.h"

ACE_RCSID(Orbix, client, "$Id$")

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

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