summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3499_Regression/DLL_Service.cpp
blob: 7f05a4ce4da06fe022de038ee40cd01c2e719b60 (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
#include "DLL_Service.h"

ACE_DLL_Service::ACE_DLL_Service ()
{
}

ACE_DLL_Service::~ACE_DLL_Service ()
{
}

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

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

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