summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/time-date/client.cpp
blob: 452afbec7fa8a209c9f38b5da77cfb788e33f48e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// $Id$

# include "Time_Date_Client_i.h"

// The client program for the application.

int
main (int argc, char *argv[])
{
  Time_Date_Client_i client;

  ACE_DEBUG ((LM_DEBUG,
              "\nTime_Date client\n\n"));

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