summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_union_fwd.cpp
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
commit6b846cf03c0bcbd8c276cb0af61a181e5f98eaae (patch)
treeda50d054f9c761c3f6a5923f6979e93306c56d68 /TAO/TAO_IDL/be/be_union_fwd.cpp
parent0e555b9150d38e3b3473ba325b56db2642e6352b (diff)
downloadATCD-6b846cf03c0bcbd8c276cb0af61a181e5f98eaae.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/TAO_IDL/be/be_union_fwd.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_union_fwd.cpp78
1 files changed, 0 insertions, 78 deletions
diff --git a/TAO/TAO_IDL/be/be_union_fwd.cpp b/TAO/TAO_IDL/be/be_union_fwd.cpp
deleted file mode 100644
index e695b8335e9..00000000000
--- a/TAO/TAO_IDL/be/be_union_fwd.cpp
+++ /dev/null
@@ -1,78 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO IDL
-//
-// = FILENAME
-// be_union_fwd.cpp
-//
-// = DESCRIPTION
-// Extension of class AST_UnionFwd that provides additional means for C++
-// mapping of a union.
-//
-// = AUTHOR
-// Jeff Parsons
-//
-// ============================================================================
-
-#include "be_union_fwd.h"
-#include "be_visitor.h"
-#include "ast_union.h"
-
-ACE_RCSID (be,
- be_union_fwd,
- "$Id$")
-
-be_union_fwd::be_union_fwd (void)
- : COMMON_Base (),
- AST_Decl (),
- AST_Type (),
- AST_StructureFwd (),
- AST_UnionFwd (),
- be_decl (),
- be_type (),
- be_structure_fwd ()
-{
-}
-
-be_union_fwd::be_union_fwd (AST_Union *dummy,
- UTL_ScopedName *n)
- : COMMON_Base (),
- AST_Decl (AST_Decl::NT_union_fwd,
- n),
- AST_Type (AST_Decl::NT_union_fwd,
- n),
- AST_StructureFwd (dummy,
- n),
- AST_UnionFwd (dummy,
- n),
- be_decl (AST_Decl::NT_union_fwd,
- n),
- be_type (AST_Decl::NT_union_fwd,
- n),
- be_structure_fwd (dummy,
- n)
-{
-}
-
-be_union_fwd::~be_union_fwd (void)
-{
-}
-
-void
-be_union_fwd::destroy (void)
-{
- this->be_structure_fwd::destroy ();
-}
-
-int
-be_union_fwd::accept (be_visitor *visitor)
-{
- return visitor->visit_union_fwd (this);
-}
-
-// Narrowing
-IMPL_NARROW_METHODS2 (be_union_fwd, AST_UnionFwd, be_type)
-IMPL_NARROW_FROM_DECL (be_union_fwd)