summaryrefslogtreecommitdiff
path: root/ACEXML/compass/Container.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACEXML/compass/Container.h')
-rw-r--r--ACEXML/compass/Container.h58
1 files changed, 0 insertions, 58 deletions
diff --git a/ACEXML/compass/Container.h b/ACEXML/compass/Container.h
deleted file mode 100644
index 2665f6eba4c..00000000000
--- a/ACEXML/compass/Container.h
+++ /dev/null
@@ -1,58 +0,0 @@
-// $Id$
-
-#ifndef COMPASS_CONTAINER_H
-#define COMPASS_CONTAINER_H
-
-#include "ace/pre.h"
-#include "ACEXML/compass/Compass_Export.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-#pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "ACEXML/compass/CompassTypes.h"
-#include "ACEXML/compass/CCMHome.h"
-
-namespace Deployment
-{
- class Compass_Export Container
- {
- public:
- Container(ComponentServer* server);
-
- ~Container();
-
- CCMHome* install_home (const UUID& id, const string& entrypt,
- const ConfigValues* config = 0)
- ACE_THROW_SPEC ((UnknownImplId, ImplEntryPointNotFound,
- InstallationFailure, InvalidConfiguration));
-
- void remove_home (const CCMHome* href)
- ACE_THROW_SPEC ((RemoveFailure));
-
- void remove ()
- ACE_THROW_SPEC ((RemoveFailure));
-
- CCMHomes* get_homes ();
-
- ComponentServer* get_component_server ();
-
- ConfigValues* get_configuration (void);
-
- void set_configuration (const ConfigValues* config);
-
- private:
- ConfigValues* config_;
- CCMHomes* homes_;
- ComponentServer* parent_;
- };
-
-}
-
-#if defined (__ACE_INLINE__)
-#include "Container.inl"
-#endif /* __ACE_INLINE__ */
-
-#include "ace/post.h"
-
-#endif /* COMPASS_CONTAINER_H */