summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_exception.h
blob: eb321b5fedc0ab31f1e9de0875d94be26058bd41 (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
// $Id$

#ifndef BE_EXCEPTION_H
#define BE_EXCEPTION_H

#include "be_scope.h"
#include "be_type.h"
#include "ast_exception.h"

class UTL_StrList;
class be_visitor;

class be_exception : public virtual AST_Exception,
                     public virtual be_scope,
                     public virtual be_type

{
public:
  be_exception (void);
  // Default constructor.

  be_exception (UTL_ScopedName *n,
                UTL_StrList *p,
                idl_bool local,
                idl_bool abstract);
  // Constructor.

  virtual idl_bool in_recursion (be_type *node = 0);
  // Check if we or the parameter node is in recursion.

  virtual void destroy (void);
  // Cleanup function.

  // Visiting.
  virtual int accept (be_visitor *visitor);

  // Narrowing.
  DEF_NARROW_METHODS3 (be_exception, AST_Exception, be_scope, be_type);
  DEF_NARROW_FROM_DECL (be_exception);
  DEF_NARROW_FROM_SCOPE (be_exception);
};

#endif // end of if !defined (...)