summaryrefslogtreecommitdiff
path: root/extdata.h
diff options
context:
space:
mode:
Diffstat (limited to 'extdata.h')
-rw-r--r--extdata.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/extdata.h b/extdata.h
index 2e2dd8c..0c7d781 100644
--- a/extdata.h
+++ b/extdata.h
@@ -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