summaryrefslogtreecommitdiff
path: root/apps/drwho/Search_Struct.cpp
blob: e796353b987bf062389becfe2f6a7cd85b84d772 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// $Id$

#include "Options.h"
#include "Search_Struct.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_;
}