summaryrefslogtreecommitdiff
path: root/ACE/tests/DLL_Test_Parent.cpp
blob: 052fe61226358f3705ac075d3696a8425d5c4c0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "DLL_Test_Parent.h"
#include "ace/Log_Msg.h"

Parent::~Parent ()
{
}

void
Parent::test ()
{
  ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("parent called\n")));
}

Data::~Data ()
{
}