blob: 828482b47cc408ac0cb47f632848903d08e43f2b (
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
|
//=============================================================================
/**
* @file be_string.h
*
* Extension of class AST_String that provides additional means for C++
* mapping.
*
* @author Copyright 1994-1995 by Sun Microsystems
* @author Inc. and Aniruddha Gokhale
*/
//=============================================================================
#ifndef BE_STRING_H
#define BE_STRING_H
#include "be_type.h"
#include "ast_string.h"
class AST_Expression;
class be_visitor;
class be_string : public virtual AST_String,
public virtual be_type
{
public:
be_string (AST_Decl::NodeType nt,
UTL_ScopedName *n,
AST_Expression *v,
long width);
// Overridden from class be_type.
virtual void gen_member_ostream_operator (TAO_OutStream *os,
const char *instance_name,
bool use_underscore,
bool accessor = false);
// Visiting.
virtual int accept (be_visitor *visitor);
// Cleanup.
virtual void destroy (void);
protected:
/// Overridden method to compute typecode name.
virtual void compute_tc_name (void);
};
#endif
|