summaryrefslogtreecommitdiff
path: root/TAO/examples/OBV/Typed_Events/client.cpp
blob: d4e502a26bd69b41a36ec82572c7ef0bacb70b82 (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 "Client_i.h"

// The client program for the application.

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


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

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

}