ZDK
IAccountProviderEventsHandler.h
1 #ifndef __IACCOUNTPROVIDERNOTIFICATIONS__
2 #define __IACCOUNTPROVIDERNOTIFICATIONS__
3 
4 #include "IEventHandle.h"
5 #include "Types/SharedPointerTypes.h"
6 
7 namespace ZDK
8 {
9 
10 //# @abi(obj_c|jni) delegate
12 {
13 public:
14  //# @abi(all) documentation
22  virtual void OnDefaultAccountChanged(ZDK::Shared::AccountProvider accountProvider, ZDK::Shared::Account account) = 0;
23 };
24 
25 } //namespace ZDK
26 
27 #endif //__IACCOUNTPROVIDERNOTIFICATIONS__
Definition: IEventHandle.h:11
virtual void OnDefaultAccountChanged(ZDK::Shared::AccountProvider accountProvider, ZDK::Shared::Account account)=0
Account information and control provider.
Definition: IAccountProviderEventsHandler.h:11
Definition: IAccountConfig.h:10