summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_operation/exceptlist_cs.h
blob: c2ef44f481f12dc879a83ec407678e2aeb648922 (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

//=============================================================================
/**
 *  @file    exceptlist_cs.h
 *
 *  Visitor for generating code for IDL operations. This generates the tables
 *  for the exceptions used by the stubs.
 *
 *  @author Aniruddha Gokhale
 */
//=============================================================================


#ifndef _BE_VISITOR_OPERATION_EXCEPTIONLIST_CS_H_
#define _BE_VISITOR_OPERATION_EXCEPTIONLIST_CS_H_

// ******************************************************************************
// Visitor for generating the exception list
// ******************************************************************************

/**
 * @class be_visitor_operation_exceptlist_cs
 *
 * @brief be_visitor_operaion_exceptlist_cs
 *
 * This is a visitor to generate operation exception list to be provided to
 * the do_static_call
 */
class be_visitor_operation_exceptlist_cs : public be_visitor_decl
{
public:
  /// constructor
  be_visitor_operation_exceptlist_cs (be_visitor_context *ctx);

  /// destructor
  ~be_visitor_operation_exceptlist_cs ();

  /// visit the operation
  int visit_operation (be_operation *node);
};

#endif /* _BE_VISITOR_OPERATION_EXCEPTIONLIST_CS_H_ */