Source-highlight Library
textstyleformattercollection.h
1#ifndef TEXTSTYLEFORMATTERCOLLECTION_H_
2#define TEXTSTYLEFORMATTERCOLLECTION_H_
3
4#include <list>
5
6namespace srchilite {
7
8class TextStyleFormatter;
9
11typedef std::list<TextStyleFormatter *> TextStyleFormatterCollection;
12
13}
14
15#endif /*TEXTSTYLEFORMATTERCOLLECTION_H_*/
C++ class: doctemplate.h.
Definition: bufferedoutput.cpp:13
std::list< TextStyleFormatter * > TextStyleFormatterCollection
Collection of TextStyleFormatter objects.
Definition: textstyleformattercollection.h:11