summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Cubit/Hardpack/IDL_Cubit/server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/performance-tests/Cubit/Hardpack/IDL_Cubit/server.cpp')
-rw-r--r--TAO/performance-tests/Cubit/Hardpack/IDL_Cubit/server.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/TAO/performance-tests/Cubit/Hardpack/IDL_Cubit/server.cpp b/TAO/performance-tests/Cubit/Hardpack/IDL_Cubit/server.cpp
new file mode 100644
index 00000000000..e82e1d84cc9
--- /dev/null
+++ b/TAO/performance-tests/Cubit/Hardpack/IDL_Cubit/server.cpp
@@ -0,0 +1,21 @@
+// $Id$
+
+#include "server_i.h"
+
+ACE_RCSID(IDL_Cubit, server, "$Id$")
+
+int
+main (int argc, char *argv[])
+{
+ Cubit_Server cubit_server;
+
+ ACE_DEBUG ((LM_DEBUG,
+ "\n\tIDL_Cubit:SERVER\n\n"));
+ if (cubit_server.init (argc, argv) == -1)
+ return 1;
+ else
+ {
+ cubit_server.run ();
+ }
+ return 0;
+}