summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3499_Regression/DLL_Service.cpp
blob: 6b4299cf74b6ee13d5181c6011e2dcaa67287a48 (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
27
28
// $Id$

#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;
}