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

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

// The client program for the application.

int
ACE_TMAIN (int argc, ACE_TCHAR **argv)
{
  ACE_Argv_Type_Converter convert (argc, argv);
  Checkpoint_Client_i client;


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

  if (client.run ("Event_Types_Checkpoint",
                  convert.get_argc(),
                  convert.get_ASCII_argv()) == -1)
    return -1;
  else
    return 0;

}