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.
27 boolean Reader::Open(const String& aFilename)
30 String string = aFilename;
33 iLexAnal = new LexAnal(string.Text());
38 iLex =& (iLexAnal->iLex);
39 iLexAnal->Read(); // reads first lexical
53 boolean Reader::_EOF()
55 return ((iLex->iType) == ELexEOF);
58 boolean Reader::NewLine()
61 if (iLex->iType == ELexNL)
68 Error(String("Newline expected"));
74 boolean Reader::Number(int& aNumber)
77 if (iLex->iType == ELexNumber)
79 aNumber = iLex->iNumber;
85 Error(String("Number expected"));
91 boolean Reader::IdentComp(const String& aIdent)
94 if (iLex->iType == ELexIdent)
96 if (aIdent == iLex->iText)
111 boolean Reader::IdentCopy(String& aIdent)
114 if (iLex->iType == ELexIdent)
116 aIdent = iLex->iText;
122 Error(String("Identifier expected"));
128 boolean Reader::StringCopy(String& aString)
131 if (iLex->iType == ELexString)
133 aString = iLex->iText;
139 Error(String("String expected"));
145 boolean Reader::Operator(char& aCh)
148 if (iLex->iType == ELexOperator)
150 aCh = iLex->iText[0];
156 Error(String("Operator expected"));
162 EXPORT_C void Reader::Error(const String& aString)
164 cerr << "Error: " << aString;
166 while ((iLex->iType != ELexNL) && (iLex->iType != ELexEOF))