summaryrefslogtreecommitdiff
path: root/TAO/tests/Strategies/simple_test_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Strategies/simple_test_i.cpp')
-rw-r--r--TAO/tests/Strategies/simple_test_i.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/TAO/tests/Strategies/simple_test_i.cpp b/TAO/tests/Strategies/simple_test_i.cpp
new file mode 100644
index 00000000000..e9c74c69fdd
--- /dev/null
+++ b/TAO/tests/Strategies/simple_test_i.cpp
@@ -0,0 +1,27 @@
+// $Id$
+
+#include "simple_test_i.h"
+#include "tao/debug.h"
+
+#if !defined(__ACE_INLINE__)
+#include "simple_test_i.i"
+#endif /* __ACE_INLINE__ */
+
+ACE_RCSID(tests, simple_test_i, "$Id$")
+
+CORBA::Boolean
+Simple_Server_i::print_status (CORBA::Environment&)
+ ACE_THROW_SPEC ((CORBA::SystemException))
+{
+ if (TAO_debug_level > 0)
+ ACE_DEBUG ((LM_DEBUG,
+ "%N:%l:(%P:%t):Simple_Server_i::print_status called\n"));
+ return 0;
+}
+
+void
+Simple_Server_i::shutdown (CORBA::Environment&)
+ ACE_THROW_SPEC ((CORBA::SystemException))
+{
+ this->orb_->shutdown (0);
+}