summaryrefslogtreecommitdiff
path: root/TAO/CIAO/tools/XML_Helpers/Assembly_Spec.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/tools/XML_Helpers/Assembly_Spec.cpp')
-rw-r--r--TAO/CIAO/tools/XML_Helpers/Assembly_Spec.cpp101
1 files changed, 0 insertions, 101 deletions
diff --git a/TAO/CIAO/tools/XML_Helpers/Assembly_Spec.cpp b/TAO/CIAO/tools/XML_Helpers/Assembly_Spec.cpp
deleted file mode 100644
index 1652fb1ca28..00000000000
--- a/TAO/CIAO/tools/XML_Helpers/Assembly_Spec.cpp
+++ /dev/null
@@ -1,101 +0,0 @@
-// $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)
-{
-}