summaryrefslogtreecommitdiff
path: root/ACE/apps/drwho/Search_Struct.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/apps/drwho/Search_Struct.cpp')
-rw-r--r--ACE/apps/drwho/Search_Struct.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/ACE/apps/drwho/Search_Struct.cpp b/ACE/apps/drwho/Search_Struct.cpp
new file mode 100644
index 00000000000..79d3848b5c9
--- /dev/null
+++ b/ACE/apps/drwho/Search_Struct.cpp
@@ -0,0 +1,23 @@
+// $Id$
+
+#include "Options.h"
+#include "Search_Struct.h"
+#include "ace/Log_Msg.h"
+
+Search_Struct::~Search_Struct (void)
+{
+ if (Options::get_opt (Options::DEBUGGING))
+ ACE_DEBUG ((LM_DEBUG,
+ "disposing Search_Struct\n"));
+}
+
+Search_Struct::Search_Struct (void)
+ : count_ (0)
+{}
+
+int
+Search_Struct::n_elems (void)
+{
+ return this->count_;
+}
+