blob: c0331b431bf1046340954d4fc808e553c70ecc5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//$Id$
#include "ace/Log_Msg.h"
class test_impl :public test
{
public:
virtual void bar (CORBA::VoidData something)
ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_DEBUG ((LM_DEBUG,
"Void Data Passed to method %d\n",
*(int*)something));
}
};
|