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

#include "airplane_client_i.h"

#include "ace/Log_Msg.h"

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

// This function runs the test.

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

  ACE_DEBUG ((LM_DEBUG, "\n\tPaper Airplane Client\n\n"));

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