blob: d333840f89f67edea39eacad9cc431d025d23b09 (
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
36
37
38
39
40
41
|
/* -*- C++ -*- */
// $Id$
// ========================================================================
//
// = LIBRARY
// TAO
//
// = FILENAME
// DynUnion_i_T.cpp
//
// = AUTHOR
// Jeff Parsons <parsons@cs.wustl.edu>
//
// ========================================================================
#ifndef TAO_DYNUNION_I_T_C
#define TAO_DYNUNION_I_T_C
#include "tao/DynUnion_i_T.h"
#include "tao/Any.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>
DU_Extractor<Type>::~DU_Extractor (void)
{
}
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 */
|