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
Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git]
/
ACE
/
tests
/
DLL_Test_Parent.cpp
blob
f680378c4e1dd07348ac403784b66b9c0dd8bb58
1
#include
"DLL_Test_Parent.h"
2
#include
"ace/Log_Msg.h"
3
4
Parent
::~
Parent
()
5
{
6
}
7
8
void
9
Parent
::
test
()
10
{
11
ACE_DEBUG
((
LM_DEBUG
,
ACE_TEXT
(
"parent called
\n
"
)));
12
}
13
14
Data
::~
Data
()
15
{
16
}
17
18
Base
::
Base
()
19
{
20
}
21
22
void
23
Base
::
_raise
()
const
24
{
25
throw
*
this
;
26
}
27
28
Derived
::
Derived
()
29
{
30
}
31
32
void
33
Derived
::
_raise
()
const
34
{
35
throw
*
this
;
36
}
37
38
Base
*
39
Derived
::
_alloc
()
40
{
41
return new
Derived
();
42
}