-rw-r--r-- | src/lib/stylekey.h | 28 |
diff --git a/src/lib/stylekey.h b/src/lib/stylekey.h new file mode 100644 index 0000000..ec32eb1 --- /dev/null +++ b/src/lib/stylekey.h @@ -0,0 +1,28 @@ +// +// C++ Interface: stylekey +// +// Description: Structure for storing the keys of a style file. +// +// +// Author: Lorenzo Bettini <http://www.lorenzobettini.it>, (C) 2007 +// +// Copyright: See COPYING file that comes with this distribution +// +// + +#ifndef STYLEKEY_H +#define STYLEKEY_H + +#include <string> +#include <list> + +using std::list; +using std::string; + +// used to store a key +typedef string KeyType; + +// used to store the keys of styles +typedef list<KeyType> KeyList; + +#endif |