summaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
authorlordjaxom <lordjaxom>2004-12-08 18:48:39 +0000
committerlordjaxom <lordjaxom>2004-12-08 18:48:39 +0000
commit5382d18d05d358bb1c313c642395e835aa44a6a0 (patch)
tree2b5ef58620b3640c5b21e8eafe92ee4b266b1d30 /cache.h
parenteb2f2c9600e8f69788232582191b141002bcd522 (diff)
downloadvdr-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.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/cache.h b/cache.h
index 3f48de8..3734293 100644
--- a/cache.h
+++ b/cache.h
@@ -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;