blob: 22c84fc62e3eb623b536c52df22186ec35b92381 (
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++ -*-
#ifndef AST_CONSUMES_H
#define AST_CONSUMES_H
#include "ast_field.h"
class AST_EventType;
class TAO_IDL_FE_Export AST_Consumes : public virtual AST_Field
{
public:
AST_Consumes (UTL_ScopedName *n,
AST_Type *consumes_type);
virtual ~AST_Consumes (void);
// Data Accessor.
AST_Type *consumes_type (void) const;
// AST Dumping.
virtual void dump (ACE_OSTREAM_TYPE &o);
// Visiting.
virtual int ast_accept (ast_visitor *visitor);
// Cleanup.
virtual void destroy (void);
static AST_Decl::NodeType const NT;
};
#endif // AST_CONSUMES_H
|