// // Author: Lorenzo Bettini , (C) 2004-2008 // // Copyright: See COPYING file that comes with this distribution // #ifndef STRINGTABLE_H_ #define STRINGTABLE_H_ #include #include namespace srchilite { /** * Stores dynamically allocated strings (used by the scanners), so that, * later on, we can easily free all the memory for these strings. */ class StringTable : public std::list { public: StringTable(); ~StringTable(); std::string *newString(const std::string &s); }; } #endif /*STRINGTABLE_H_*/

AltStyle によって変換されたページ (->オリジナル) /