summaryrefslogtreecommitdiff
path: root/TAO/CIAO/tools/Config_Handlers/XML_File_Intf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/tools/Config_Handlers/XML_File_Intf.cpp')
-rw-r--r--TAO/CIAO/tools/Config_Handlers/XML_File_Intf.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/TAO/CIAO/tools/Config_Handlers/XML_File_Intf.cpp b/TAO/CIAO/tools/Config_Handlers/XML_File_Intf.cpp
index 8c4caa05475..a592f756cf1 100644
--- a/TAO/CIAO/tools/Config_Handlers/XML_File_Intf.cpp
+++ b/TAO/CIAO/tools/Config_Handlers/XML_File_Intf.cpp
@@ -11,7 +11,7 @@
#include "Deployment.hpp"
#include "DP_Handler.h"
#include "ciao/Deployment_DataC.h"
-
+#include "ciao/CIAO_common.h"
namespace CIAO
@@ -27,6 +27,8 @@ namespace CIAO
bool
XML_File_Intf::read_process_file (const char *file)
{
+ CIAO_TRACE("XML_File_Intf::read_process_file");
+
XML_Helper helper;
if (!helper.is_initialized ())
@@ -51,16 +53,19 @@ namespace CIAO
return false;
}
-
+
::Deployment::DeploymentPlan const *
XML_File_Intf::get_plan (void) const
{
+ CIAO_TRACE("get_plan");
return this->idl_dp_.get ();
}
::Deployment::DeploymentPlan *
XML_File_Intf::get_plan (void)
{
+ CIAO_TRACE("XML_File_Intf::get_plan");
+
return this->idl_dp_.release ();
}
}