summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_eventtype_fwd/cdr_op_ci.cpp
blob: 303c88f4bcdab84a0b13c08097bcb82b50b1b736 (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
//
// $Id$
//

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

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

be_visitor_eventtype_fwd_cdr_op_ci::be_visitor_eventtype_fwd_cdr_op_ci (
    be_visitor_context *ctx
  )
  : be_visitor_decl (ctx)
{
}

be_visitor_eventtype_fwd_cdr_op_ci::~be_visitor_eventtype_fwd_cdr_op_ci (void)
{
}

int
be_visitor_eventtype_fwd_cdr_op_ci::visit_eventtype_fwd (be_eventtype_fwd *node)
{
  be_visitor_context ctx (*this->ctx_);
  ctx.state (TAO_CodeGen::TAO_VALUETYPE_FWD_CDR_OP_CI);
  be_visitor_valuetype_fwd_cdr_op_ci visitor (&ctx);
  return visitor.visit_valuetype_fwd (node);
}