summaryrefslogtreecommitdiff
path: root/TAO/tests/MProfile_Forwarding/test_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/MProfile_Forwarding/test_i.cpp')
-rw-r--r--TAO/tests/MProfile_Forwarding/test_i.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/TAO/tests/MProfile_Forwarding/test_i.cpp b/TAO/tests/MProfile_Forwarding/test_i.cpp
new file mode 100644
index 00000000000..e994bbf6c62
--- /dev/null
+++ b/TAO/tests/MProfile_Forwarding/test_i.cpp
@@ -0,0 +1,29 @@
+// $Id$
+
+#include "test_i.h"
+
+#if !defined(__ACE_INLINE__)
+#include "test_i.inl"
+#endif /* __ACE_INLINE__ */
+
+ACE_RCSID(MT_Client, test_i, "$Id$")
+
+Simple_Server_i::Simple_Server_i (void)
+ :orb_ (0)
+{
+ // no-op
+}
+
+void
+Simple_Server_i::remote_call (void)
+{
+ ACE_DEBUG ((LM_DEBUG,
+ "Print out from process id (%P) hosting the servant \n"));
+}
+
+
+void
+Simple_Server_i::shutdown (void)
+{
+ this->orb_->shutdown (0);
+}