summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_eventtype/cdr_op_ci.cpp
blob: 760703bb1547d698db976d581c4ad1827d7ad915 (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
42
43
44
45
46
//
// $Id$
//

// ============================================================================
//
// = LIBRARY
//    TAO IDL
//
// = FILENAME
//    cdr_op_ci.cpp
//
// = DESCRIPTION
//    Visitor generating CDR operators for Eventtypes in the client inline
//
// = AUTHOR
//    Jeff Parsons
//
// ============================================================================

ACE_RCSID (be_visitor_eventtype, 
           cdr_op_ci, 
           "$Id$")

// ******************************************************
// Eventtype visitor for CDR operators in the client inline
// ******************************************************

be_visitor_eventtype_cdr_op_ci::be_visitor_eventtype_cdr_op_ci (
    be_visitor_context *ctx
  )
  : be_visitor_valuetype (ctx)
{
}

be_visitor_eventtype_cdr_op_ci::~be_visitor_eventtype_cdr_op_ci (void)
{
}

int
be_visitor_eventtype_cdr_op_ci::visit_eventtype (be_eventtype *node)
{
  be_visitor_context ctx (*this->ctx_);
  be_visitor_valuetype_cdr_op_ci visitor (&ctx);
  return visitor.visit_valuetype (node);
}