summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3499_Regression/DLL_Service.cpp
blob: 6b98c90e75b28e6bc9457f615c3c1de146056587 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include "DLL_Service.h"

ACE_DLL_Service::ACE_DLL_Service (void)
{

}

ACE_DLL_Service::~ACE_DLL_Service (void)
{

}

int ACE_DLL_Service::init (int, ACE_TCHAR *[])
{
  return 0;
}

int ACE_DLL_Service::fini (void)
{
  return 0;
}

void ACE_DLL_Service::destroy (void)
{
  delete this;
}