00001 // This file is part of ff3d - http://www.freefem.org/ff3d 00002 // Copyright (C) 2001, 2002, 2003 Stéphane Del Pino 00003 00004 // This program is free software; you can redistribute it and/or modify 00005 // it under the terms of the GNU General Public License as published by 00006 // the Free Software Foundation; either version 2, or (at your option) 00007 // any later version. 00008 00009 // This program is distributed in the hope that it will be useful, 00010 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00012 // GNU General Public License for more details. 00013 00014 // You should have received a copy of the GNU General Public License 00015 // along with this program; if not, write to the Free Software Foundation, 00016 // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00017 00018 // $Id: VariableLexerRepository.hpp,v 1.3 2007/02/14 21:16:56 delpinux Exp $ 00019 00020 #ifndef VARIABLE_LEXER_REPOSITORY_HPP 00021 #define VARIABLE_LEXER_REPOSITORY_HPP 00022 00023 #include <string> 00024 #include <map> 00025 #include <vector> 00026 00027 #include <ThreadStaticBase.hpp> 00035 class VariableLexerRepository 00036 : public ThreadStaticBase<VariableLexerRepository> 00037 { 00038 private: 00039 typedef int Type; 00040 00042 typedef std::map<std::string, 00043 Type> Container; 00044 00045 std::vector<Container> 00046 __repository; 00048 size_t __blockLevel; 00050 public: 00058 Type find(const std::string& name) const; 00059 00066 void add(const std::string& name, const Type& type); 00067 00073 void markAsUnknown(const std::string& name); 00074 00079 void beginBlock(); 00080 00085 void endBlock(); 00086 00091 VariableLexerRepository(); 00092 00097 ~VariableLexerRepository(); 00098 }; 00099 00100 #endif // VARIABLE_LEXER_REPOSITORY_HPP
1.5.6