summaryrefslogtreecommitdiff
path: root/CIAO/tools/Config_Handlers/XML_File_Intf.h
diff options
context:
space:
mode:
authorseibelr <seibelr@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-11-24 22:12:20 +0000
committerseibelr <seibelr@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-11-24 22:12:20 +0000
commit47b676670dc9373bc77af80388e0b51e36134738 (patch)
treeaacce0809279e1d142e7b196a84ff10dfbdae4d0 /CIAO/tools/Config_Handlers/XML_File_Intf.h
parent3dd4e2fe6c64de3a9db04757eade78d764b578f1 (diff)
downloadATCD-GH5_0port.tar.gz
Added the ACE and TAO for this branchGH5_0port
Diffstat (limited to 'CIAO/tools/Config_Handlers/XML_File_Intf.h')
-rw-r--r--CIAO/tools/Config_Handlers/XML_File_Intf.h51
1 files changed, 0 insertions, 51 deletions
diff --git a/CIAO/tools/Config_Handlers/XML_File_Intf.h b/CIAO/tools/Config_Handlers/XML_File_Intf.h
deleted file mode 100644
index 9f5869b20fb..00000000000
--- a/CIAO/tools/Config_Handlers/XML_File_Intf.h
+++ /dev/null
@@ -1,51 +0,0 @@
-//==============================================================
-/**
-* @file XML_File_Intf.h
-*
-* $Id$
-*
-* @author Bala Natarajan <bala@dre.vanderbilt.edu>
-*/
-//================================================================
-
-#ifndef CIAO_CONFIG_XML_FILE_INTF_H
-#define CIAO_CONFIG_XML_FILE_INTF_H
-#include /**/ "ace/pre.h"
-
-#include "Config_Handlers_Export.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "ace/Auto_Ptr.h"
-
-
-namespace Deployment
-{
-struct DeploymentPlan ;
-}
-
-namespace CIAO
-{
-namespace Config_Handlers
-{
-class Config_Handlers_Export XML_File_Intf
-{
-public:
-XML_File_Intf (const char *file);
-
-::Deployment::DeploymentPlan const *get_plan (void) const;
-::Deployment::DeploymentPlan *get_plan (void);
-
-protected:
-
-bool read_process_file (const char *file);
-
-private:
-ACE_Auto_Ptr< ::Deployment::DeploymentPlan> idl_dp_;
-};
-}
-}
-#include /**/ "ace/post.h"
-#endif /*CIAO_CONFIG_XML_FILE_INTF_H*/