summaryrefslogtreecommitdiff
path: root/TAO/tests/Hang_Shutdown/test_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Hang_Shutdown/test_i.h')
-rw-r--r--TAO/tests/Hang_Shutdown/test_i.h45
1 files changed, 21 insertions, 24 deletions
diff --git a/TAO/tests/Hang_Shutdown/test_i.h b/TAO/tests/Hang_Shutdown/test_i.h
index 1368f3c36c8..28f6ef82e23 100644
--- a/TAO/tests/Hang_Shutdown/test_i.h
+++ b/TAO/tests/Hang_Shutdown/test_i.h
@@ -9,36 +9,33 @@
#include "ace/OS_NS_unistd.h"
-namespace TAO
+namespace Test
{
- namespace Test
+ class test_i
+ : public virtual POA_Test::Hang
{
- class test_i
- : public virtual POA_TAO::Test::Hang
+ public:
+ // = The skeleton methods
+ virtual void send_stuff (const char* str,
+ CORBA::Boolean flag
+ ACE_ENV_ARG_DECL_NOT_USED)
+ ACE_THROW_SPEC ((CORBA::SystemException))
{
- public:
- // = The skeleton methods
- virtual void send_stuff (const char* str,
- CORBA::Boolean flag
- ACE_ENV_ARG_DECL_NOT_USED)
- ACE_THROW_SPEC ((CORBA::SystemException))
- {
- ACE_DEBUG ((LM_DEBUG,
- "(%P|%t) - [%C]\n", str));
+ ACE_DEBUG ((LM_DEBUG,
+ "(%P|%t) - [%C]\n", str));
- if (flag)
- {
- ACE_OS::sleep (10);
+ if (flag)
+ {
+ ACE_OS::sleep (10);
- ACE_DEBUG ((LM_DEBUG,
- "TAO (%P|%t) - Returning from send_stuff\n", str));
- }
+ ACE_DEBUG ((LM_DEBUG,
+ "TAO (%P|%t) - Returning from send_stuff\n", str));
+ }
- return;
- }
- private:
- };
- }
+ return;
+ }
+ private:
+ };
}
#include /**/ "ace/post.h"