summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_exception/exception_ch.h
blob: 063bb0a90ee2d8323c969cd05daca53eaa72a7ea (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_ch.h
 *
 *  Visitor for Exceptions.
 *  For code generation in client header
 *
 *  @author Aniruddha Gokhale
 */
//=============================================================================

#ifndef _BE_VISITOR_EXCEPTION_EXCEPTION_CH_H_
#define _BE_VISITOR_EXCEPTION_EXCEPTION_CH_H_

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

  virtual int visit_exception (be_exception *node);
};

#endif /* _BE_VISITOR_EXCEPTION_EXCEPTION_CH_H_ */