summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/time/client.cpp
blob: 28eab3cb977422d89dec5b199eb554b75e11cc5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//$Id$

# include "Time_Client_i.h"

// The client program for the application.

int
main (int argc, char **argv)
{
  Time_Client_i client;
  

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

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