summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.h')
-rw-r--r--config.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/config.h b/config.h
index 85fba3b..3a031c0 100644
--- a/config.h
+++ b/config.h
@@ -13,7 +13,7 @@
class cDesignerConfig {
private:
- cString CheckSlashAtEnd(std::string path);
+ cString CheckSlashAtEnd(string path);
bool epgImagePathSet;
bool skinPathSet;
bool logoPathSet;
@@ -23,6 +23,8 @@ private:
string fontFix;
string fontOsd;
string fontSml;
+ map < string, map < int, string > > plugins;
+ map < string, map < int, string > >::iterator plugIt;
public:
cDesignerConfig();
~cDesignerConfig();
@@ -43,6 +45,9 @@ public:
void SetOSDFonts(void);
bool OsdFontsChanged(void);
cString GetSkinRessourcePath(void);
+ void AddPlugin(string name, map < int, string > &menus);
+ void InitPluginIterator(void);
+ map <int,string> *GetPluginTemplates(string &name);
cString skinPath;
cString logoPath;
cString epgImagePath;