summaryrefslogtreecommitdiff
path: root/ACE/TAO/examples/Persistent_Grid/persistent_client.cpp
blob: 4e6c779133652090f0101341cd12914ac6e28811 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// $Id$

# include "Persistent_Client.h"

// The "persistent client" program for the application.

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


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

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