summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/bank/client.cpp
blob: 3686f8a86546695c921316e3ef90350044d3f217 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// $Id$

#include "Client_i.h"

ACE_RCSID(Time, client, "$Id$")

// This function runs the Bank client test.

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

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

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