summaryrefslogtreecommitdiff
path: root/TAO/tao/DynUnion_i_T.cpp
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-22 03:25:15 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-22 03:25:15 +0000
commit3526fcee3d2b7b8336d6b03c1266308076cc15cc (patch)
tree56e6519fc6c1609ff7927ca54546e3e2bbc7315e /TAO/tao/DynUnion_i_T.cpp
parentb9157dbc6b046fdfb7376be8b6c12bc9dc83c5c3 (diff)
downloadATCD-ACE-4_5_62.tar.gz
This commit was manufactured by cvs2svn to create tag 'ACE-4_5_62'.ACE-4_5_62
Diffstat (limited to 'TAO/tao/DynUnion_i_T.cpp')
-rw-r--r--TAO/tao/DynUnion_i_T.cpp35
1 files changed, 0 insertions, 35 deletions
diff --git a/TAO/tao/DynUnion_i_T.cpp b/TAO/tao/DynUnion_i_T.cpp
deleted file mode 100644
index 05f13314d89..00000000000
--- a/TAO/tao/DynUnion_i_T.cpp
+++ /dev/null
@@ -1,35 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-// ========================================================================
-//
-// = LIBRARY
-// TAO
-//
-// = FILENAME
-// DynUnion_i_T.cpp
-//
-// = AUTHOR
-// Jeff Parsons <jp4@cs.wustl.edu>
-//
-// ========================================================================
-
-#if !defined TAO_DYNUNION_I_T_C
-#define TAO_DYNUNION_I_T_C
-
-#include "tao/DynUnion_i_T.h"
-
-// Method of template class that serves as a functor for all that
-// compares Anys constructed from all legal discriminator
-// types - some are specifically defined in DynUnion_i.cpp.
-
-template <class Type>
-CORBA::Boolean
-DU_Extractor<Type>::check_match (const CORBA_Any& inside_any,
- const CORBA_Any& outside_any)
-{
- inside_any >>= this->member_index_;
- outside_any >>= this->arg_index_;
- return this->member_index_ == this->arg_index_;
-}
-
-#endif /* TAO_DYNUNION_I_T_C */