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
13namespace srchilite {
14
19class StringTable : public std::list<std::string *> {
20public:
23
24 std::string *newString(const std::string &s);
25};
26
27}
28
29#endif /*STRINGTABLE_H_*/
Stores dynamically allocated strings (used by the scanners), so that, later on, we can easily free al...
Definition: stringtable.h:19
C++ class: doctemplate.h.
Definition: bufferedoutput.cpp:13