summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_finder.h
blob: d6f7208aec6eeebace931f6574cf77c8b3e1744e (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

//=============================================================================
/**
 *  @file    be_finder.h
 *
 *  Extension of class AST_Finder that provides additional means for C++
 *  mapping.
 *
 *  @author Jeff Parsons
 */
//=============================================================================


#ifndef BE_FINDER_H
#define BE_FINDER_H

#include "be_factory.h"

#include "ast_finder.h"

class be_finder : public virtual AST_Finder,
                  public virtual be_factory
{
public:
  be_finder (UTL_ScopedName *n);

  ~be_finder ();

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

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

#endif // BE_FINDER_H