summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/ImplRepo/client.cpp
blob: c458048613f83198e5c36492390d8832d970060c (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 "client_impl.h"

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

// This function runs the test.

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

  ACE_DEBUG ((LM_DEBUG,
              "\n\tSimple_Client\n\n"));

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