summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/include/ast_finder.h
blob: 13540932f254142ab3a6bff6dae85dbe4c07104d (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
#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