repo.or.cz
/
ACE_TAO.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git]
/
TAO
/
tests
/
Bug_3499_Regression
/
DLL_Service.cpp
blob
6b98c90e75b28e6bc9457f615c3c1de146056587
1
#include
"DLL_Service.h"
2
3
ACE_DLL_Service
::
ACE_DLL_Service
(
void
)
4
{
5
6
}
7
8
ACE_DLL_Service
::~
ACE_DLL_Service
(
void
)
9
{
10
11
}
12
13
int
ACE_DLL_Service
::
init
(
int
,
ACE_TCHAR
*[])
14
{
15
return
0
;
16
}
17
18
int
ACE_DLL_Service
::
fini
(
void
)
19
{
20
return
0
;
21
}
22
23
void
ACE_DLL_Service
::
destroy
(
void
)
24
{
25
delete this
;
26
}