summaryrefslogtreecommitdiff
path: root/CIAO/tools/Config_Handlers/Package_Handlers/PC_Intf.h
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/tools/Config_Handlers/Package_Handlers/PC_Intf.h')
-rw-r--r--CIAO/tools/Config_Handlers/Package_Handlers/PC_Intf.h58
1 files changed, 0 insertions, 58 deletions
diff --git a/CIAO/tools/Config_Handlers/Package_Handlers/PC_Intf.h b/CIAO/tools/Config_Handlers/Package_Handlers/PC_Intf.h
deleted file mode 100644
index c15ae0389b9..00000000000
--- a/CIAO/tools/Config_Handlers/Package_Handlers/PC_Intf.h
+++ /dev/null
@@ -1,58 +0,0 @@
-//==============================================================
-/**
- * @file PC_Intf.h
- *
- * $Id$
- *
- * @author Ming Xiong <mxiong@dre.vanderbilt.edu>
- */
-//================================================================
-
-#ifndef CIAO_CONFIG_STD_PC_INTF_H
-#define CIAO_CONFIG_STD_PC_INTF_H
-#include /**/ "ace/pre.h"
-
-#include "Config_Handlers_Export.h"
-
-#include "ace/Auto_Ptr.h"
-
-
-namespace Deployment
-{
- struct PackageConfiguration ;
-}
-
-namespace CIAO
-{
- namespace Config_Handlers
- {
- /*
- * @class PC_Intf
- *
- * @brief Wrapper class for PackageConfiguration extraction
- *
- * This class defines wrapper functions for extracting
- * PackageConfiguration IDL structures from XSC structures.
- * It serves as the public interface used by application
- * developers.
- *
- */
- class Config_Handlers_Export STD_PC_Intf
- {
- public:
- STD_PC_Intf (const char *file);
-
- ::Deployment::PackageConfiguration const *get_PC (void) const;
- ::Deployment::PackageConfiguration *get_PC (void);
-
- protected:
- bool prepare_PC (const char *file);
-
- private:
- ACE_Auto_Ptr< ::Deployment::PackageConfiguration> idl_pc_;
- };
- }
-}
-
-#include /**/ "ace/post.h"
-#endif /*CIAO_CONFIG_STD_PC_INTF_H*/