summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/ImplRepo/airplane_client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/ImplRepo/airplane_client.cpp')
-rw-r--r--TAO/orbsvcs/tests/ImplRepo/airplane_client.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/TAO/orbsvcs/tests/ImplRepo/airplane_client.cpp b/TAO/orbsvcs/tests/ImplRepo/airplane_client.cpp
new file mode 100644
index 00000000000..1bee519f70d
--- /dev/null
+++ b/TAO/orbsvcs/tests/ImplRepo/airplane_client.cpp
@@ -0,0 +1,24 @@
+// $Id$
+
+#include "airplane_client_i.h"
+
+#include "ace/Log_Msg.h"
+
+ACE_RCSID (ImplRepo,
+ airplane_client,
+ "$Id$")
+
+// This function runs the test.
+
+int
+main (int argc, char **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 ();
+}