summaryrefslogtreecommitdiff
path: root/TAO/tests/RTScheduling/VoidData/test.h
blob: 36965973ecea2c04199dc73af74d1e0fb1ed5a35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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));
  }
};