summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/ImplRepo/nestea_client.cpp
blob: 03e00c6bdd6021b632db4e075e1fee2039741f9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// $Id$

#include "nestea_client_i.h"

ACE_RCSID(ImplRepo, nestea_client, "$Id$")

// This function runs the test.

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

  ACE_DEBUG ((LM_DEBUG, "\n\tNestea Bookshelf Client\n\n"));

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