diff options
Diffstat (limited to 'ACEXML/compass/Assembly.cpp')
-rw-r--r-- | ACEXML/compass/Assembly.cpp | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/ACEXML/compass/Assembly.cpp b/ACEXML/compass/Assembly.cpp deleted file mode 100644 index e286d702b38..00000000000 --- a/ACEXML/compass/Assembly.cpp +++ /dev/null @@ -1,37 +0,0 @@ -// $Id$ - - -#if defined (__ACE_INLINE__) -#include "Assembly.inl" -#endif /* __ACE_INLINE__ */ - -#include "ACEXML/compass/Assembly.h" - -using namespace Deployment; - -Assembly::Assembly() - : state_ (AssemblyState::INACTIVE), - stream_ (0) -{} - -Assembly::Assembly (const AssemblyState& state, ACEXML_CharStream* stream) - : state_ (state), - stream_ (stream) -{} - -Assembly::~Assembly() -{ - this->state_ = Assembly::INACTIVE; - delete this->stream; -} - - -void -Assembly::build (void) - ACE_THROW_SPEC ((CreateFailure)) -{} - -void -Assembly::tear_down(void) - ACE_THROW_SPEC ((RemoveFailure)) -{} |