summaryrefslogtreecommitdiff
path: root/TAO/CIAO/tools/Config_Handlers/STD_PCD_Handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/tools/Config_Handlers/STD_PCD_Handler.h')
-rw-r--r--TAO/CIAO/tools/Config_Handlers/STD_PCD_Handler.h84
1 files changed, 42 insertions, 42 deletions
diff --git a/TAO/CIAO/tools/Config_Handlers/STD_PCD_Handler.h b/TAO/CIAO/tools/Config_Handlers/STD_PCD_Handler.h
index ba53f6736da..c4082d9a5eb 100644
--- a/TAO/CIAO/tools/Config_Handlers/STD_PCD_Handler.h
+++ b/TAO/CIAO/tools/Config_Handlers/STD_PCD_Handler.h
@@ -1,11 +1,11 @@
//================================================
/**
- * @file STD_PCD_Handler.h
- *
- * $Id$
- *
- * @author Ming Xiong <mxiong@dre.vanderbilt.edu>
- */
+* @file STD_PCD_Handler.h
+*
+* $Id$
+*
+* @author Ming Xiong <mxiong@dre.vanderbilt.edu>
+*/
//================================================
#ifndef CIAO_CONFIG_HANDLERS_STD_PCD_HANDLER_H
@@ -22,56 +22,56 @@
namespace Deployment
{
- struct PackageConfiguration;
+struct PackageConfiguration;
}
namespace CIAO
{
- namespace Config_Handlers
- {
- class PackageConfiguration;
+namespace Config_Handlers
+{
+class PackageConfiguration;
- /*
- * @class STD_PCD_Handler
- *
- * @brief Handler class for <CCMPackageConfiguration> types.
- *
- * This class defines handler methods to map values from
- * XSC objects, parsed from the descriptor files, to the
- * corresponding CORBA IDL type for the schema element.
- *
- */
- class Config_Handlers_Export STD_PCD_Handler
- {
+/*
+* @class STD_PCD_Handler
+*
+* @brief Handler class for <CCMPackageConfiguration> types.
+*
+* This class defines handler methods to map values from
+* XSC objects, parsed from the descriptor files, to the
+* corresponding CORBA IDL type for the schema element.
+*
+*/
+class Config_Handlers_Export STD_PCD_Handler
+{
- public:
- STD_PCD_Handler (XML_Helper *xml_helper)
- :xml_helper_ (xml_helper)
- {
- }
+public:
+STD_PCD_Handler (XML_Helper *xml_helper)
+:xml_helper_ (xml_helper)
+{
+}
- /// Maps the values from the XSC object
- /// <PackageConfiguration> to the CORBA IDL type
- /// <Deployment::PackageConfiguration>.
- bool package_config (
- const PackageConfiguration &desc,
- ::Deployment::PackageConfiguration &toconfig);
+/// Maps the values from the XSC object
+/// <PackageConfiguration> to the CORBA IDL type
+/// <Deployment::PackageConfiguration>.
+bool package_config (
+const PackageConfiguration &desc,
+::Deployment::PackageConfiguration &toconfig);
//@@Note: This part has yet to be added in the future
// PackageConfiguration
// package_config (
// const Deployment::ComponentPortDescription& src);
- private:
- // Disable the default constructor
- STD_PCD_Handler ()
- :xml_helper_ (0)
- {
- }
+private:
+// Disable the default constructor
+STD_PCD_Handler ()
+:xml_helper_ (0)
+{
+}
- XML_Helper *xml_helper_;
- };
- }
+XML_Helper *xml_helper_;
+};
+}
}
#include /**/ "ace/post.h"