summaryrefslogtreecommitdiff
path: root/TAO/CIAO/tools/Config_Handlers/Property_Handler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/tools/Config_Handlers/Property_Handler.cpp')
-rw-r--r--TAO/CIAO/tools/Config_Handlers/Property_Handler.cpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/TAO/CIAO/tools/Config_Handlers/Property_Handler.cpp b/TAO/CIAO/tools/Config_Handlers/Property_Handler.cpp
index c2525f5ceeb..273fe8c8e69 100644
--- a/TAO/CIAO/tools/Config_Handlers/Property_Handler.cpp
+++ b/TAO/CIAO/tools/Config_Handlers/Property_Handler.cpp
@@ -4,7 +4,7 @@
#include "Any_Handler.h"
#include "Basic_Deployment_Data.hpp"
#include "ciao/Deployment_DataC.h"
-
+#include "ciao/CIAO_common.h"
namespace CIAO
{
namespace Config_Handlers
@@ -20,9 +20,11 @@ namespace CIAO
void
Property_Handler::get_property (
- const Property& desc,
- Deployment::Property& toconfig)
+ const Property& desc,
+ Deployment::Property& toconfig)
{
+ CIAO_TRACE("Property_Handler::get_property");
+
toconfig.name =
CORBA::string_dup (desc.name ().c_str ());
@@ -33,8 +35,10 @@ namespace CIAO
Property
Property_Handler::get_property (
- const Deployment::Property& src)
+ const Deployment::Property& src)
{
+ CIAO_TRACE("Property_Handler::get_property - reverse");
+
::XMLSchema::string< char > name ((src.name));
Any value (Any_Handler::get_any (src.value));