summaryrefslogtreecommitdiff
path: root/ACEXML/compass/Assembly.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACEXML/compass/Assembly.h')
-rw-r--r--ACEXML/compass/Assembly.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/ACEXML/compass/Assembly.h b/ACEXML/compass/Assembly.h
deleted file mode 100644
index 467458e9b36..00000000000
--- a/ACEXML/compass/Assembly.h
+++ /dev/null
@@ -1,46 +0,0 @@
-// $Id$
-
-
-#ifndef COMPASS_ASSEMBLY_H
-#define COMPASS_ASSEMBLY_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/common/CharStream.h"
-#include "ACEXML/compass/CompassTypes.h"
-
-namespace Deployment
-{
- class Compass_Export Assembly
- {
- public:
- Assembly(void);
- Assembly (const AssemblyState& state, ACEXML_CharStream* stream);
- ~Assembly();
-
- AssemblyState get_state();
-
- void build()
- ACE_THROW_SPEC ((CreateFailure));
-
- void tear_down()
- ACE_THROW_SPEC ((RemoveFailure));
-
- private:
- AssemblyState state_;
- ACEXML_CharStream* stream_;
- };
-}
-
-#if defined (__ACE_INLINE__)
-#include "Assembly.inl"
-#endif /* __ACE_INLINE__ */
-
-#include "ace/post.h"
-
-#endif /* COMPASS_ASSEMBLY_H */