blob: f66e44d910f3d1709c699f34b095bc0e707b42fe (
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
|
// This may look like C, but it's really -*- C++ -*-
#ifndef TAO_IDL_AST_FINDER_H
#define TAO_IDL_AST_FINDER_H
// Representation of component home finder construct declaration.
#include "ast_factory.h"
class TAO_IDL_FE_Export AST_Finder : public virtual AST_Factory
{
public:
AST_Finder (UTL_ScopedName *n);
virtual ~AST_Finder ();
// AST Dumping.
virtual void dump (ACE_OSTREAM_TYPE &o);
// Cleanup function.
virtual void destroy ();
// Visiting.
virtual int ast_accept (ast_visitor *visitor);
static AST_Decl::NodeType const NT;
};
#endif // TAO_IDL_AST_FINDER_H
|