summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_finder.h
blob: c54090e5e3bb2ccea0da70014efcf1077098607e (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
37
38
39
40

//=============================================================================
/**
 *  @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 (void);

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

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

  // Narrowing
  DEF_NARROW_FROM_DECL (be_finder);
  DEF_NARROW_FROM_SCOPE (be_finder);
};

#endif // BE_FINDER_H