blob: a7c99de589bce3b3e619d5811e36ed881a32c189 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// $Id$
#include "Options.h"
#include "Search_Struct.h"
#include "ace/Log_Msg.h"
Search_Struct::~Search_Struct (void)
{
if (Options::get_opt (Options::DEBUG))
ACE_DEBUG ((LM_DEBUG,
"disposing Search_Struct\n"));
}
Search_Struct::Search_Struct (void)
: count_ (0)
{}
int
Search_Struct::n_elems (void)
{
return this->count_;
}
|