Update contrib.
2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
23 #if defined(__VC32__) && !defined(__MSVCDOTNET__)
24 #pragma warning( disable : 4511 ) // copy constructor could not be generated
25 #pragma warning( disable : 4512 ) // assignment operator could not be generated
26 #pragma warning( disable : 4514 ) // unreferenced inline function has been removed
27 #pragma warning( disable : 4699 ) // Note: Using precompiled header %s
28 #pragma warning( disable : 4710 ) // function not inlined
34 #if defined(__VC32__) && !defined(__MSVCDOTNET__)
37 #else //!__VC32__ || __MSVCDOTNET__
41 #endif //!__VC32__ || __MSVCDOTNET__
46 WARNING:Enum for internal use ONLY. Compatibility is not guaranteed in future releases.
50 ELexEOF, // end of file
51 ELexNL, // newline (newlines, white-space and comments stripped)
52 ELexNumber, // integer (no optional plus or minus)
53 ELexIdent, // identifier beginning with a..z, A..Z, or _ and continuing with 0..9
54 ELexString, // string delimited at start by "
55 ELexOperator // any other single character
61 WARNING: Class for internal use ONLY. Compatibility is not guaranteed in future releases.
66 Lexical(const Lexical& aLex);
67 Lexical& operator = (const Lexical& aLex);
68 int CovertStringToHex();
70 int HexDigit(char aDigit, int& decimalEquivalent);
73 int iNumber; // for ELexNumber
74 char iText[MaxLineLen + 1]; // for ELexIdent, ELexString, ELexOperator
75 friend ostream& operator << (ostream& out, Lexical& aLex);
81 WARNING: Class for internal use ONLY. Compatibility is not guaranteed in future releases.
85 LexAnal(const char* aFilename);
86 Lexical Read(); // read next lexical into iLex
87 Lexical ReadNextLine(); // read first lex on next line
94 char iLine[MaxLineLen + 1];
95 char* iLexPtr; // Position in current lexical
96 char* iCurPtr; // Position of current lexical in line
100 void PurgeLastCR(char *aLine);
102 Lexical ReadNewLine();
103 Lexical ReadNumber();
105 Lexical ReadString();
106 Lexical ReadOperator();