sl@0: /* sl@0: * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * Header READER.H sl@0: * sl@0: */ sl@0: sl@0: sl@0: #ifndef __READER_H__ sl@0: #define __READER_H__ sl@0: sl@0: #include "LEXICAL.H" sl@0: #include "RECORD.H" sl@0: sl@0: class Reader sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: { sl@0: public: sl@0: Reader(); sl@0: virtual boolean Read(const String& aFilename) = 0; sl@0: ~Reader(); sl@0: protected: sl@0: boolean Open(const String& aFilename); sl@0: boolean _EOF(); sl@0: boolean NewLine(); sl@0: boolean Number(int& aNumber); sl@0: boolean Ident(); sl@0: boolean IdentComp(const String& aIdent); sl@0: boolean IdentCopy(String& aIdent); sl@0: boolean StringCopy(String& aString); sl@0: boolean Operator(char& aCh); sl@0: IMPORT_C void Error(const String& aString); sl@0: protected: sl@0: LexAnal *iLexAnal; sl@0: Lexical *iLex; sl@0: }; sl@0: sl@0: #endif