diff options
author | Chris Xiong <chirs241097@gmail.com> | 2016-04-29 23:49:40 +0800 |
---|---|---|
committer | Chris Xiong <chirs241097@gmail.com> | 2016-04-29 23:49:40 +0800 |
commit | 50374f6942b96d0f15843ea63bc27eccc8f4d77c (patch) | |
tree | c93535f942220005eb8bef58027ed66f8fa328aa /include/qmpcorepublic.hpp | |
parent | 13fca5100f1e28a538e7900d011714d94f6b1b10 (diff) | |
download | QMidiPlayer-50374f6942b96d0f15843ea63bc27eccc8f4d77c.tar.xz |
Update documentation.
Diffstat (limited to 'include/qmpcorepublic.hpp')
-rw-r--r-- | include/qmpcorepublic.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/qmpcorepublic.hpp b/include/qmpcorepublic.hpp index 03e99a0..54365b6 100644 --- a/include/qmpcorepublic.hpp +++ b/include/qmpcorepublic.hpp @@ -73,6 +73,10 @@ class qmpPluginAPI virtual void registerOptionInt(std::string desc,std::string key,int min,int max,int defaultval); virtual int getOptionInt(std::string key); + virtual void registerOptionUint(std::string desc,std::string key,unsigned min,unsigned max,unsigned defaultval); + virtual unsigned getOptionUint(std::string key); + virtual void registerOptionBool(std::string desc,std::string key,bool defaultval); + virtual bool getOptionBool(std::string key); virtual void registerOptionDouble(std::string desc,std::string key,double min,double max,double defaultval); virtual double getOptionDouble(std::string key); virtual void registerOptionString(std::string desc,std::string key,std::string defaultval); |