How to intercept changed value of ConfigItem in ConfigContext
Hi
virtual void ConfigChanged(const char* key, const char* value) {}
I have a question about ConfigContext described here: innovaphone SDK - config implementation
As mentioned in SDK there are two callback functions that are called when some value is changed:
virtual void ConfigChanged() {}
virtual void ConfigChangedUnmanaged() {}
My question is how can I know which of ConfigItem is updated or can I intercept changed value as key value pair. Another option would be to have callback functions with parameters like:
virtual void ConfigChangedUnmanaged(const char* key, const char* value) {}
Kind Regards
Iqbal