summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/InterfaceRepo/Latency_Test/client.cpp
blob: 6364ca7811f34c898ba0d31f79e9e492c216e763 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// -*- C++ -*-
// $Id$

#include "Latency_Query_Client.h"
#include "ace/Argv_Type_Converter.h"

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

int 
ACE_TMAIN (int argc, ACE_TCHAR *argv[])
{
  ACE_Argv_Type_Converter convert (argc, argv);

  Latency_Query_Client client;

  int retval = client.init (convert.get_argc(), convert.get_ASCII_argv());

  if (retval == -1)
    {
      return 1;
    }

  retval = client.run ();

  return retval;
}