summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_operation/rettype_post_docall_cs.h
blob: 5efdc22d2a2f2d2436d1550ae95166f7b4cbb96b (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
47
48
49
50
51
52
53
54
//
// $Id$
//

// ============================================================================
//
// = LIBRARY
//    TAO IDL
//
// = FILENAME
//    rettype_post_docall_cs.h
//
// = DESCRIPTION
//    Visitor for generating code for IDL operations. This generates the code
//    for post processing of the return type variable after the docall is
//    made.
//
// = AUTHOR
//    Aniruddha Gokhale
//
// ============================================================================

#ifndef _BE_VISITOR_OPERATION_RETTYPE_POST_DOCALL_CS_H_
#define _BE_VISITOR_OPERATION_RETTYPE_POST_DOCALL_CS_H_

// ************************************************************
// Operation visitor for postprocessing after do_static_call is invoked
// ************************************************************

class be_visitor_operation_rettype_post_docall_cs :public be_visitor_decl
{
  //
  // = TITLE
  //   be_visitor_operation_rettype_psot_docall_cs
  //
  // = DESCRIPTION
  //   This is a visitor to generate any post processing after the do_static_call is
  //   made
  //
public:
  be_visitor_operation_rettype_post_docall_cs (be_visitor_context *ctx);
  // constructor

  ~be_visitor_operation_rettype_post_docall_cs (void);
  // destructor

  int visit_interface (be_interface *node);
  // visit an interface node

  int visit_interface_fwd (be_interface_fwd *node);
  // visit an interface node
};

#endif /* _BE_VISITOR_OPERATION_RETTYPE_POST_DOCALL_CS_H_ */