summaryrefslogtreecommitdiff
path: root/TAO/CIAO/tools/Config_Handlers/IDREF_Base.cpp
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-04-12 14:49:02 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-04-12 14:49:02 +0000
commitcbe8aa5d5be1d4679ae0c4e30baaea24fbae416c (patch)
treeb9f7b9d73fe1ba0675ac5233476b66a61b8f8521 /TAO/CIAO/tools/Config_Handlers/IDREF_Base.cpp
parenta2dd5f907273d7561f3ccac51d7fffc8bb4b6893 (diff)
downloadATCD-cbe8aa5d5be1d4679ae0c4e30baaea24fbae416c.tar.gz
This commit was manufactured by cvs2svn to create branch
'escher_x_4_9_integration_point'.
Diffstat (limited to 'TAO/CIAO/tools/Config_Handlers/IDREF_Base.cpp')
-rw-r--r--TAO/CIAO/tools/Config_Handlers/IDREF_Base.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/TAO/CIAO/tools/Config_Handlers/IDREF_Base.cpp b/TAO/CIAO/tools/Config_Handlers/IDREF_Base.cpp
index 24da9dc6c3b..88808bb4a6f 100644
--- a/TAO/CIAO/tools/Config_Handlers/IDREF_Base.cpp
+++ b/TAO/CIAO/tools/Config_Handlers/IDREF_Base.cpp
@@ -2,7 +2,6 @@
#ifndef IDREF_BASE_CPP
#define IDREF_BASE_CPP
-#include "ciao/CIAO_common.h"
#include "IDREF_Base.h"
#include <iostream>
@@ -21,8 +20,6 @@ namespace CIAO
IDREF_Base<T>::bind_ref (ACE_CString& id, T value)
throw (Config_Error)
{
- CIAO_TRACE("IDREF_Base<T>::bind_ref");
-
int retval =
idref_map_.bind (id, value);
@@ -38,8 +35,6 @@ namespace CIAO
IDREF_Base<T>::find_ref (const ACE_CString& id, T& val)
throw (Config_Error)
{
- CIAO_TRACE("IDREF_Base<T>::find_ref(C_String, T)");
-
int retval =
idref_map_.find (id, val);
@@ -53,8 +48,6 @@ namespace CIAO
IDREF_Base<T>::find_ref (const T& value, ACE_CString& id)
throw (Config_Error)
{
- CIAO_TRACE("IDREF_Base<T>::find_ref (T, CString)");
-
int retval =
pos_map_.find (value, id);
@@ -67,8 +60,6 @@ namespace CIAO
bool
IDREF_Base<T>::unbind_refs (void)
{
- CIAO_TRACE("IDREF_Base<T>::unbind_refs");
-
int retval =
idref_map_.unbind_all ();