Source-highlight Library
|
00001 // 00002 // Author: Lorenzo Bettini <http://www.lorenzobettini.it>, (C) 2004-2008 00003 // 00004 // Copyright: See COPYING file that comes with this distribution 00005 // 00006 00007 #ifndef STRINGTABLE_H_ 00008 #define STRINGTABLE_H_ 00009 00010 #include <list> 00011 #include <string> 00012 00013 namespace srchilite { 00014 00019 class StringTable : public std::list<std::string *> { 00020 public: 00021 StringTable(); 00022 ~StringTable(); 00023 00024 std::string *newString(const std::string &s); 00025 }; 00026 00027 } 00028 00029 #endif /*STRINGTABLE_H_*/