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
Add a variable on the stack for ref counting
[ACE_TAO.git]
/
ACE
/
apps
/
drwho
/
Search_Struct.cpp
blob
c9feb78381573cee676380ea5573028476641571
1
#include
"Options.h"
2
#include
"Search_Struct.h"
3
#include
"ace/Log_Msg.h"
4
5
Search_Struct
::~
Search_Struct
()
6
{
7
if
(
Options
::
get_opt
(
Options
::
DEBUGGING
))
8
ACE_DEBUG
((
LM_DEBUG
,
9
"disposing Search_Struct
\n
"
));
10
}
11
12
Search_Struct
::
Search_Struct
()
13
:
count_
(
0
)
14
{}
15
16
int
17
Search_Struct
::
n_elems
()
18
{
19
return this
->
count_
;
20
}
21