Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / ACE / tests / DLL_Test_Parent.cpp
blobf680378c4e1dd07348ac403784b66b9c0dd8bb58
1 #include "DLL_Test_Parent.h"
2 #include "ace/Log_Msg.h"
4 Parent::~Parent ()
8 void
9 Parent::test ()
11 ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("parent called\n")));
14 Data::~Data ()
18 Base::Base ()
22 void
23 Base::_raise () const
25 throw *this;
28 Derived::Derived ()
32 void
33 Derived::_raise () const
35 throw *this;
38 Base*
39 Derived::_alloc()
41 return new Derived();