summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_array/any_op_ch.cpp
blob: 7bbb9fc1cb09488460ade3729dbc7928adb43e8e (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

//=============================================================================
/**
 *  @file    any_op_ch.cpp
 *
 *  Visitor for code generation of Arrays for the Any operators in the client
 *  header.
 *
 *  @author Aniruddha Gokhale
 */
//=============================================================================

#include "array.h"

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

int
be_visitor_array_any_op_ch::visit_array (be_array *node)
{
  if (node->cli_hdr_any_op_gen () || node->imported ())
    {
      return 0;
    }

  TAO_OutStream *os = this->ctx_->stream ();
  const char *macro = this->ctx_->export_macro ();

  TAO_INSERT_COMMENT (os);

  *os << be_global->core_versioning_begin () << be_nl;

  *os << macro << " void operator<<= (::CORBA::Any &, const " << node->name ()
      << "_forany &);" << be_nl;
  *os << macro << " ::CORBA::Boolean operator>>= (const ::CORBA::Any &, "
      << node->name () << "_forany &);";

  *os << be_global->core_versioning_end () << be_nl;

  node->cli_hdr_any_op_gen (true);
  return 0;
}