diff options
author | lordjaxom <lordjaxom> | 2004-12-08 18:48:39 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2004-12-08 18:48:39 +0000 |
commit | 5382d18d05d358bb1c313c642395e835aa44a6a0 (patch) | |
tree | 2b5ef58620b3640c5b21e8eafe92ee4b266b1d30 /cache.h | |
parent | eb2f2c9600e8f69788232582191b141002bcd522 (diff) | |
download | vdr-plugin-text2skin-5382d18d05d358bb1c313c642395e835aa44a6a0.tar.gz vdr-plugin-text2skin-5382d18d05d358bb1c313c642395e835aa44a6a0.tar.bz2 |
1.0-pre1v1.0-pre1
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -1,23 +1,25 @@ /* - * $Id: cache.h,v 1.5 2004/06/18 16:08:11 lordjaxom Exp $ + * $Id: cache.h,v 1.1.1.1 2004/11/19 16:45:31 lordjaxom Exp $ */ #ifndef VDR_TEXT2SKIN_CACHE_HPP #define VDR_TEXT2SKIN_CACHE_HPP #include "common.h" +#include <map> +#include <vector> #include <vdr/tools.h> class cText2SkinBitmap; class cText2SkinCache { private: - typedef string key_type; + typedef std::string key_type; typedef cText2SkinBitmap* data_type; - typedef map<key_type,data_type> item_map; + typedef std::map<key_type,data_type> item_map; typedef item_map::iterator item_iterator; - typedef vector<key_type> usage_list; + typedef std::vector<key_type> usage_list; typedef usage_list::iterator usage_iterator; item_map mItems; |