summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Cubit/TAO/IDL_Cubit/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/performance-tests/Cubit/TAO/IDL_Cubit/client.cpp')
-rw-r--r--TAO/performance-tests/Cubit/TAO/IDL_Cubit/client.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/TAO/performance-tests/Cubit/TAO/IDL_Cubit/client.cpp b/TAO/performance-tests/Cubit/TAO/IDL_Cubit/client.cpp
new file mode 100644
index 00000000000..5f2a798b6ac
--- /dev/null
+++ b/TAO/performance-tests/Cubit/TAO/IDL_Cubit/client.cpp
@@ -0,0 +1,27 @@
+// $Id$
+
+#include "Cubit_Client.h"
+#include "tao/Timeprobe.h"
+
+ACE_RCSID(IDL_Cubit, client, "$Id$")
+
+// This function runs the client test.
+
+int
+main (int argc, char **argv)
+{
+ Cubit_Client cubit_client;
+
+ ACE_DEBUG ((LM_DEBUG,
+ "\n\tIDL_Cubit: client\n\n"));
+
+ if (cubit_client.init (argc, argv) == -1)
+ return 1;
+
+ int retval = cubit_client.run ();
+
+ ACE_TIMEPROBE_PRINT;
+
+ return retval;
+}
+