blob: 1e89aaf2b3778571ddec1fcfd7b91f41d4ec05f4 (
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
41
42
43
44
45
46
47
48
49
50
|
//=============================================================================
/**
* @file be_factory.h
*
* Extension of class AST_Factory that provides additional means for C++
* mapping.
*
*
* @author Copyright 1994-1995 by Sun Microsystems
* @author Inc. and Boris Kolpackov <bosk@ipmce.ru>
*/
//=============================================================================
#ifndef BE_FACTORY_H
#define BE_FACTORY_H
#include "be_scope.h"
#include "be_decl.h"
#include "ast_factory.h"
class AST_Type;
class UTL_StrList;
class be_visitor;
class be_argument;
class be_factory : public virtual AST_Factory,
public virtual be_scope,
public virtual be_decl
{
public:
be_factory (UTL_ScopedName *n);
~be_factory (void);
/// Cleanup method.
virtual void destroy (void);
// Visiting.
virtual int accept (be_visitor *visitor);
// Add an argument to the scope.
virtual AST_Argument *be_add_argument (AST_Argument *arg);
// Narrowing
DEF_NARROW_FROM_DECL (be_factory);
DEF_NARROW_FROM_SCOPE (be_factory);
};
#endif // BE_FACTORY_H
|