summaryrefslogtreecommitdiff
path: root/orbsvcs/tests/Time/client.cpp
blob: 463436ae292330042fdce1a1a7db3efa216816f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// $Id$

#include "Client_i.h"
#include "ace/Log_Msg.h"



// This function runs the Time Service client test.

int
ACE_TMAIN(int argc, ACE_TCHAR *argv[])
{
  Client_i client;

  ACE_DEBUG ((LM_DEBUG,
              "[CLIENT] Process/Thread Id : (%P/%t) Time Service Client\n"));

  if (client.init (argc, argv) == -1)
    return -1;
  else
    return client.run ();
}