summaryrefslogtreecommitdiff
path: root/TAO/tao/AnyTypeCode/Union_TypeCode.inl
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/AnyTypeCode/Union_TypeCode.inl
parent0e555b9150d38e3b3473ba325b56db2642e6352b (diff)
downloadATCD-6b846cf03c0bcbd8c276cb0af61a181e5f98eaae.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/tao/AnyTypeCode/Union_TypeCode.inl')
-rw-r--r--TAO/tao/AnyTypeCode/Union_TypeCode.inl59
1 files changed, 0 insertions, 59 deletions
diff --git a/TAO/tao/AnyTypeCode/Union_TypeCode.inl b/TAO/tao/AnyTypeCode/Union_TypeCode.inl
deleted file mode 100644
index ab001d57baf..00000000000
--- a/TAO/tao/AnyTypeCode/Union_TypeCode.inl
+++ /dev/null
@@ -1,59 +0,0 @@
-// -*- C++ -*-
-//
-// $Id$
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-template <typename StringType,
- typename TypeCodeType,
- class CaseArrayType,
- class RefCountPolicy>
-ACE_INLINE
-TAO::TypeCode::Union<StringType,
- TypeCodeType,
- CaseArrayType,
- RefCountPolicy>::Union (
- char const * id,
- char const * name,
-#if defined (__BORLANDC__) && (__BORLANDC__ < 0x572)
- // Borland C++ currently can't handle a reference to
- // const pointer to const CORBA::TypeCode_ptr
- TypeCodeType discriminant_type,
-#else
- TypeCodeType const & discriminant_type,
-#endif
- CaseArrayType const & cases,
- CORBA::ULong ncases,
- CORBA::Long default_index)
- : ::CORBA::TypeCode (CORBA::tk_union)
- , RefCountPolicy ()
- , base_attributes_ (id, name)
- , discriminant_type_ (discriminant_type)
- , default_index_ (default_index)
- , ncases_ (ncases)
- , cases_ (cases)
-{
-}
-
-template <typename StringType,
- typename TypeCodeType,
- class CaseArrayType,
- class RefCountPolicy>
-ACE_INLINE
-TAO::TypeCode::Union<StringType,
- TypeCodeType,
- CaseArrayType,
- RefCountPolicy>::Union (
- CORBA::TCKind,
- char const * id)
- : ::CORBA::TypeCode (CORBA::tk_union)
- , RefCountPolicy ()
- , base_attributes_ (id)
- , discriminant_type_ (0)
- , default_index_ (-1)
- , ncases_ (0)
- , cases_ ()
-{
-}
-
-TAO_END_VERSIONED_NAMESPACE_DECL