summaryrefslogtreecommitdiff
path: root/TAO/CIAO/tools/XML_Helpers/Assembly_Spec.cpp
blob: 1652fb1ca287bcdd759a0e73cdb12581d73963c6 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
// $Id$

#include "Assembly_Spec.h"

#if !defined (__ACE_INLINE__)
# include "Assembly_Spec.inl"
#endif /* __ACE_INLINE__ */


// ================================================================

int
CIAO::Assembly_Placement::Node::accept
(CIAO::Assembly_Placement::Visitor &
 ACE_ENV_ARG_DECL_NOT_USED)
{
  // This should have never gotten called.
  ACE_ASSERT (0);
  return -1;
}

CIAO::Assembly_Placement::Node::~Node ()
{
}

// ================================================================

int
CIAO::Assembly_Placement::Container::accept
(CIAO::Assembly_Placement::Visitor &visitor
 ACE_ENV_ARG_DECL)
{
  return visitor.visit_Container (this
                                  ACE_ENV_ARG_PARAMETER);
}

// ================================================================

int
CIAO::Assembly_Placement::componentinstantiation::accept
(CIAO::Assembly_Placement::Visitor &visitor
 ACE_ENV_ARG_DECL)
{
  return visitor.visit_componentinstantiation (this
                                               ACE_ENV_ARG_PARAMETER);
}

CIAO::Assembly_Placement::componentinstantiation::~componentinstantiation ()
{
}

// ================================================================

int
CIAO::Assembly_Placement::homeplacement::accept
(CIAO::Assembly_Placement::Visitor &visitor
 ACE_ENV_ARG_DECL)
{
  return visitor.visit_homeplacement (this
                                      ACE_ENV_ARG_PARAMETER);
}

CIAO::Assembly_Placement::homeplacement::~homeplacement ()
{
}

// ================================================================

int
CIAO::Assembly_Placement::hostcollocation::accept
(CIAO::Assembly_Placement::Visitor &visitor
 ACE_ENV_ARG_DECL)
{
  return visitor.visit_hostcollocation (this
                                        ACE_ENV_ARG_PARAMETER);
}

CIAO::Assembly_Placement::hostcollocation::~hostcollocation ()
{
}

// ================================================================

int
CIAO::Assembly_Placement::processcollocation::accept
(CIAO::Assembly_Placement::Visitor &visitor
 ACE_ENV_ARG_DECL)
{
  return visitor.visit_processcollocation (this
                                           ACE_ENV_ARG_PARAMETER);
}

CIAO::Assembly_Placement::processcollocation::~processcollocation ()
{
}

// ================================================================

CIAO::Assembly_Placement::Visitor::~Visitor (void)
{
}