summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/time/client.cpp
blob: ae493d1586eb5902a1f9b6f17b595f09e1aa6b08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# include "Time_Client_i.h"

// The client program for the application.

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

  ACE_DEBUG ((LM_DEBUG,
              ACE_TEXT ("\n\tTime and date client\n\n")));

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