Source-highlight Library
stylekey.h
1 //
2 // C++ Interface: stylekey
3 //
4 // Description: Structure for storing the keys of a style file.
5 //
6 //
7 // Author: Lorenzo Bettini <http://www.lorenzobettini.it>, (C) 2007
8 //
9 // Copyright: See COPYING file that comes with this distribution
10 //
11 //
12 
13 #ifndef STYLEKEY_H
14 #define STYLEKEY_H
15 
16 #include <string>
17 #include <list>
18 
19 using std::list;
20 using std::string;
21 
22 namespace srchilite {
23 
24 // used to store a key
25 typedef string KeyType;
26 
27 // used to store the keys of styles
28 typedef list<KeyType> KeyList;
29 
30 }
31 
32 #endif
C++ class: doctemplate.h.
Definition: bufferedoutput.cpp:13