summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/POA/Demux/demux_test_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/performance-tests/POA/Demux/demux_test_i.cpp')
-rw-r--r--TAO/performance-tests/POA/Demux/demux_test_i.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/TAO/performance-tests/POA/Demux/demux_test_i.cpp b/TAO/performance-tests/POA/Demux/demux_test_i.cpp
new file mode 100644
index 00000000000..5f95b402308
--- /dev/null
+++ b/TAO/performance-tests/POA/Demux/demux_test_i.cpp
@@ -0,0 +1,22 @@
+//$Id$
+// Implementation of TAO's Demux_Test interface
+
+#include "demux_test_i.h"
+#include "tao/ORB_Core.h"
+
+// ctor
+Demux_Test_i::Demux_Test_i (void)
+{}
+
+// dtor
+Demux_Test_i::~Demux_Test_i (void)
+{}
+
+void Demux_Test_i::M302 (void)
+{
+}
+
+void Demux_Test_i::shutdown (void)
+{
+ TAO_ORB_Core_instance ()->orb ()->shutdown ();
+}