summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_exception/exception_cs.h
blob: 3bd79bb082fd733e635c86326ae56d2f13d09139 (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
/* -*- C++ -*- */

//=============================================================================
/**
 *  @file    exception_cs.h
 *
 *  Visitor for Exceptions.
 *  For code generation in client stubs.
 *
 *  @author Aniruddha Gokhale
 */
//=============================================================================

#ifndef _BE_VISITOR_EXCEPTION_EXCEPTION_CS_H_
#define _BE_VISITOR_EXCEPTION_EXCEPTION_CS_H_

/**
 * @class be_visitor_exception_cs
 *
 * @brief be_visitor_exception_cs
 *
 * This is a concrete visitor to generate the client stubs for exception
 */
class be_visitor_exception_cs : public be_visitor_exception
{
public:
  be_visitor_exception_cs (be_visitor_context *ctx);
  ~be_visitor_exception_cs (void);

  virtual int visit_exception (be_exception *node);
};

#endif /* _BE_VISITOR_EXCEPTION_EXCEPTION_CS_H_ */