summaryrefslogtreecommitdiff
path: root/TAO/Benchmark/Marshal_Test/TAO/server.cpp
blob: 53102d6e1893a8b1958f5c85f9aff2a09d23cad2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// $Id$

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

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

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