diff options
author | mrwastl <mrwastl@users.sourceforge.net> | 2011-09-22 00:55:22 +0200 |
---|---|---|
committer | mrwastl <mrwastl@users.sourceforge.net> | 2011-09-22 00:55:22 +0200 |
commit | a651288e07c48d120dc63160236072a028192c4e (patch) | |
tree | 15a993430d5b0710325d24cdc5094d1306d029fd /extdata.h | |
parent | 0703b948dd63eb281df5dc531abdf66818becdf7 (diff) | |
download | vdr-plugin-graphlcd-a651288e07c48d120dc63160236072a028192c4e.tar.gz vdr-plugin-graphlcd-a651288e07c48d120dc63160236072a028192c4e.tar.bz2 |
support up to 4 displays; cExtData now able to bind data to a certain display; location of graphlcd.conf can be defined in Makefile
Diffstat (limited to 'extdata.h')
-rw-r--r-- | extdata.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -37,10 +37,10 @@ protected: static void ReleaseExtData(void); public: - bool Set(std::string key, std::string value, uint32_t expire = 0); - bool Unset(std::string key); - bool IsSet(std::string key); - std::string Get(std::string key); + bool Set(const std::string & key, const std::string & value, const std::string & scope, uint32_t expire = 0 ); + bool Unset(const std::string & key, const std::string & scope); + bool IsSet(const std::string & key, const std::string & scope); + std::string Get(const std::string & key, const std::string & scope); }; #endif |