summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Time/client.cpp
blob: 690b329a7d7656214a84671bfc96cd98862bc17b (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"

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

// This function runs the Time Service client test.

int
main (int argc, char *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 ();
}