summaryrefslogtreecommitdiff
path: root/trunk/TAO/orbsvcs/tests/InterfaceRepo/IFR_Test/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/orbsvcs/tests/InterfaceRepo/IFR_Test/client.cpp')
-rw-r--r--trunk/TAO/orbsvcs/tests/InterfaceRepo/IFR_Test/client.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/trunk/TAO/orbsvcs/tests/InterfaceRepo/IFR_Test/client.cpp b/trunk/TAO/orbsvcs/tests/InterfaceRepo/IFR_Test/client.cpp
new file mode 100644
index 00000000000..aa3af160455
--- /dev/null
+++ b/trunk/TAO/orbsvcs/tests/InterfaceRepo/IFR_Test/client.cpp
@@ -0,0 +1,23 @@
+// -*- C++ -*-
+// $Id$
+
+#include "Admin_Client.h"
+
+ACE_RCSID (IFR_Test,
+ client,
+ "$Id$")
+
+int main (int argc, char *argv[])
+{
+ Admin_Client admin_client;
+
+ int retval = admin_client.init (argc,
+ argv);
+
+ if (retval == -1)
+ {
+ return 1;
+ }
+
+ return admin_client.run ();
+}