Source-highlight Library
|
00001 // 00002 // C++ Interface: stylekey 00003 // 00004 // Description: Structure for storing the keys of a style file. 00005 // 00006 // 00007 // Author: Lorenzo Bettini <http://www.lorenzobettini.it>, (C) 2007 00008 // 00009 // Copyright: See COPYING file that comes with this distribution 00010 // 00011 // 00012 00013 #ifndef STYLEKEY_H 00014 #define STYLEKEY_H 00015 00016 #include <string> 00017 #include <list> 00018 00019 using std::list; 00020 using std::string; 00021 00022 namespace srchilite { 00023 00024 // used to store a key 00025 typedef string KeyType; 00026 00027 // used to store the keys of styles 00028 typedef list<KeyType> KeyList; 00029 00030 } 00031 00032 #endif