Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / TAO_IDL / be_include / be_emits.h
blob96970a433b93b7d6891901b415ff129dce2faaea
1 // -*- C++ -*-
2 #ifndef BE_EMITS_H
3 #define BE_EMITS_H
5 #include "ast_emits.h"
7 #include "be_field.h"
9 class be_eventtype;
10 class be_visitor;
12 class be_emits : public virtual AST_Emits,
13 public virtual be_field
15 public:
16 be_emits (UTL_ScopedName *n,
17 AST_Type *emits_type);
19 virtual ~be_emits (void);
21 // Non-virtual override of frontend method.
22 be_eventtype *emits_type (void) const;
24 // Narrowing.
25 DEF_NARROW_FROM_DECL (be_emits);
27 // Visiting.
28 virtual int accept (be_visitor *visitor);
30 // Cleanup.
31 virtual void destroy (void);
34 #endif // BE_EMITS_H