summaryrefslogtreecommitdiff
path: root/ACEXML/compass/Assembly.cpp
blob: e286d702b3864f388a7925028b5dbec464471490 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// $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))
{}