summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/MProfile_Forwarding/test_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/MProfile_Forwarding/test_i.cpp')
-rw-r--r--ACE/TAO/tests/MProfile_Forwarding/test_i.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/ACE/TAO/tests/MProfile_Forwarding/test_i.cpp b/ACE/TAO/tests/MProfile_Forwarding/test_i.cpp
new file mode 100644
index 00000000000..4fb6535c3ab
--- /dev/null
+++ b/ACE/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);
+}