summaryrefslogtreecommitdiff
path: root/TAO/examples/Persistent_Grid/client.cpp
blob: 870292aa89303b2f2bc59eda6e78eeeb72a32348 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# include "Grid_Client_i.h"

// The client program for the application.

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

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

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