diff options
author | Kurt Zenker <kz@openoffice.org> | 2005-01-18 12:33:49 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2005-01-18 12:33:49 +0000 |
commit | 8e58425e98d670813aee783dcbf2b72687cb6c6f (patch) | |
tree | 8c30846043c38a96ec37c43ac794ad361580d01e /idlc | |
parent | f158b48e5d3baabdf42734a51f77d8be9c65405d (diff) |
INTEGRATION: CWS sb28 (1.2.16); FILE MERGED
2005/01/03 16:37:59 sb 1.2.16.1: #i28722# Removed support for char and string constants.
Diffstat (limited to 'idlc')
-rw-r--r-- | idlc/inc/idlc/astexpression.hxx | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/idlc/inc/idlc/astexpression.hxx b/idlc/inc/idlc/astexpression.hxx index d18f08a67635..7d6320fd911f 100644 --- a/idlc/inc/idlc/astexpression.hxx +++ b/idlc/inc/idlc/astexpression.hxx @@ -2,9 +2,9 @@ * * $RCSfile: astexpression.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: rt $ $Date: 2004-06-17 12:47:16 $ + * last change: $Author: kz $ $Date: 2005-01-18 13:33:49 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -110,8 +110,7 @@ enum ExprType ET_any, // Expression value is any of above ET_void, // Expression value is void (absent) ET_type, // Expression value is type - ET_none, // Expression value is missing - ET_pseudo // Expression value is pseudo (for keywords) + ET_none // Expression value is missing }; // Structure to describe value of constant expression and its type @@ -129,8 +128,6 @@ struct AstExprValue sal_Bool bval; // Contains boolean expression value float fval; // Contains 32-bit float expr value double dval; // Contains 64-bit float expr value - sal_Char cval; // Contains char expression value - ::rtl::OString* strval; // Contains String * expr value sal_uInt32 eval; // Contains enumeration value } u; ExprType et; @@ -154,8 +151,7 @@ public: AstExpression(sal_uInt64 uh); AstExpression(float f); AstExpression(double d); - AstExpression(sal_Char c); - AstExpression(::rtl::OString* s, sal_Bool bIsScopedName = sal_False); + AstExpression(::rtl::OString* scopedName); virtual ~AstExpression(); |