summaryrefslogtreecommitdiff
path: root/TAO/tests/RTScheduling/VoidData/test.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/RTScheduling/VoidData/test.h')
-rw-r--r--TAO/tests/RTScheduling/VoidData/test.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/TAO/tests/RTScheduling/VoidData/test.h b/TAO/tests/RTScheduling/VoidData/test.h
new file mode 100644
index 00000000000..36965973ece
--- /dev/null
+++ b/TAO/tests/RTScheduling/VoidData/test.h
@@ -0,0 +1,16 @@
+//$Id$
+
+#include "ace/Log_Msg.h"
+
+class test_impl :public test
+{
+ public:
+ virtual void bar (CORBA::VoidData something)
+
+ {
+ ACE_DEBUG ((LM_DEBUG,
+ "Void Data Passed to method %d\n",
+ *(int*)something));
+ }
+};
+