summaryrefslogtreecommitdiff
path: root/TAO/tao/DynUnion_i_T.cpp
blob: 05f13314d891ae03259cc1368b3f91fbce81feaf (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
/* -*- 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 */