Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Bug_3499_Regression / DLL_Service.cpp
blob6b98c90e75b28e6bc9457f615c3c1de146056587
1 #include "DLL_Service.h"
3 ACE_DLL_Service::ACE_DLL_Service (void)
8 ACE_DLL_Service::~ACE_DLL_Service (void)
13 int ACE_DLL_Service::init (int, ACE_TCHAR *[])
15 return 0;
18 int ACE_DLL_Service::fini (void)
20 return 0;
23 void ACE_DLL_Service::destroy (void)
25 delete this;