summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_expression.h
blob: 432d21b11611de70debc33f9a1d9e1b5bce426be (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
51
52
// $Id$

// ============================================================================
//
// = LIBRARY
//    TAO IDL
//
// = FILENAME
//    be_expression.h
//
// = DESCRIPTION
//    Extension of class AST_Expression that provides additional means for C++
//    mapping.
//
// = AUTHOR
//    Copyright 1994-1995 by Sun Microsystems, Inc.
//    and
//    Aniruddha Gokhale
//
// ============================================================================

#ifndef BE_EXPRESSION_H
#define BE_EXPRESSION_H

#include "ast_expression.h"

class be_visitor;

/*
 * BE_Expression
 */
class be_expression : public virtual AST_Expression
{
public:
  // Operations
  be_expression (UTL_ScopedName *n);
  be_expression (AST_Expression *b, AST_Expression::ExprType t);
  be_expression (AST_Expression::ExprComb c,
                 AST_Expression *v1,
                 AST_Expression *v2);
  be_expression (long l);
  be_expression (long l, AST_Expression::ExprType t);
  be_expression (unsigned long l);
  be_expression (UTL_String *s);
  be_expression (char c);
  be_expression (double d);

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

#endif