Source-highlight Library
stringtable.h
1 //
2 // Author: Lorenzo Bettini <http://www.lorenzobettini.it>, (C) 2004-2008
3 //
4 // Copyright: See COPYING file that comes with this distribution
5 //
6 
7 #ifndef STRINGTABLE_H_
8 #define STRINGTABLE_H_
9 
10 #include <list>
11 #include <string>
12 
13 namespace srchilite {
14 
19 class StringTable : public std::list<std::string *> {
20 public:
21  StringTable();
22  ~StringTable();
23 
24  std::string *newString(const std::string &s);
25 };
26 
27 }
28 
29 #endif /*STRINGTABLE_H_*/
C++ class: doctemplate.h.
Definition: bufferedoutput.cpp:13
Stores dynamically allocated strings (used by the scanners), so that, later on, we can easily free al...
Definition: stringtable.h:19