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
=default for generated implementation copy ctor
[ACE_TAO.git]
/
TAO
/
tests
/
Bug_3499_Regression
/
DLL_Service.cpp
blob
7f05a4ce4da06fe022de038ee40cd01c2e719b60
1
#include
"DLL_Service.h"
2
3
ACE_DLL_Service
::
ACE_DLL_Service
()
4
{
5
}
6
7
ACE_DLL_Service
::~
ACE_DLL_Service
()
8
{
9
}
10
11
int
ACE_DLL_Service
::
init
(
int
,
ACE_TCHAR
*[])
12
{
13
return
0
;
14
}
15
16
int
ACE_DLL_Service
::
fini
()
17
{
18
return
0
;
19
}
20
21
void
ACE_DLL_Service
::
destroy
()
22
{
23
delete this
;
24
}