diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2012-10-27 13:48:53 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2012-10-27 13:48:53 +0000 |
commit | 6f703dbe7162e00a84130beeb4dd40200ef155c4 (patch) | |
tree | 929e6cbf5bd9bc93292abfd87be6f3faf06bf0d7 /protocols/Skype/src/skype_subclassing.h | |
parent | e1748da64473c0a9b5f5ac2a02923f9f3fbcd510 (diff) |
- added own info loading and updating
git-svn-id: http://svn.miranda-ng.org/main/trunk@2092 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_subclassing.h')
-rw-r--r-- | protocols/Skype/src/skype_subclassing.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/protocols/Skype/src/skype_subclassing.h b/protocols/Skype/src/skype_subclassing.h index 578de49ef7..17b8f1f1c2 100644 --- a/protocols/Skype/src/skype_subclassing.h +++ b/protocols/Skype/src/skype_subclassing.h @@ -97,6 +97,8 @@ private: class CAccount : public Account
{
public: + typedef void (CSkypeProto::* OnAccountChanged)(int); + typedef DRef<CAccount, Account> Ref; typedef DRefs<CAccount, Account> Refs; @@ -112,7 +114,11 @@ public: bool IsOnline();
-private:
+ void SetOnAccountChangedCallback(OnAccountChanged callback, CSkypeProto* proto); + +private: + CSkypeProto* proto;
+ OnAccountChanged callback;
void OnChange(int prop); }; |