summaryrefslogtreecommitdiff
path: root/libcore/imagecache.h
diff options
context:
space:
mode:
Diffstat (limited to 'libcore/imagecache.h')
-rw-r--r--libcore/imagecache.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libcore/imagecache.h b/libcore/imagecache.h
index 9e700bf..a0264d8 100644
--- a/libcore/imagecache.h
+++ b/libcore/imagecache.h
@@ -18,6 +18,7 @@ public:
~cImageCache();
void Lock(void) { mutex.Lock(); }
void Unlock(void) { mutex.Unlock(); }
+ void SetPathes(void);
//channel logos
void CacheLogo(int width, int height);
cImage *GetLogo(string channelID, int width, int height);
@@ -41,6 +42,9 @@ private:
static cMutex mutex;
static string items[16];
cImage *tempStaticLogo;
+ string logoPath;
+ string iconPath;
+ string skinPartsPath;
map<string, cImage*> iconCache;
map<string, cImage*> channelLogoCache;
map<string, cImage*> skinPartsCache;