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

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

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