summaryrefslogtreecommitdiff
path: root/TAO/tests/MT_Client/test_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/MT_Client/test_i.cpp')
-rw-r--r--TAO/tests/MT_Client/test_i.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/TAO/tests/MT_Client/test_i.cpp b/TAO/tests/MT_Client/test_i.cpp
index e6e62d54fc2..a71e2e849d5 100644
--- a/TAO/tests/MT_Client/test_i.cpp
+++ b/TAO/tests/MT_Client/test_i.cpp
@@ -1,6 +1,7 @@
// $Id$
#include "test_i.h"
+#include "tao/debug.h"
#if !defined(__ACE_INLINE__)
#include "test_i.i"
@@ -11,6 +12,18 @@ ACE_RCSID(MT_Client, test_i, "$Id$")
void
Simple_Server_i::test_method (CORBA::Environment&)
{
+ if (TAO_debug_level > 0)
+ ACE_DEBUG ((LM_DEBUG,
+ "%N:%l:(%P:%t):Simple_Server_i::test_method called\n"));
+}
+
+CORBA::Long
+Simple_Server_i::get_number (CORBA::Environment&)
+{
+ if (TAO_debug_level > 0)
+ ACE_DEBUG ((LM_DEBUG,
+ "%N:%l:(%P:%t):Simple_Server_i::get_number called\n"));
+ return (CORBA::ULong) 931232;
}
void