diff options
Diffstat (limited to 'protocols/Skype/src/skype_subclassing.cpp')
-rw-r--r-- | protocols/Skype/src/skype_subclassing.cpp | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/protocols/Skype/src/skype_subclassing.cpp b/protocols/Skype/src/skype_subclassing.cpp index 0de069a243..1c067f4c3a 100644 --- a/protocols/Skype/src/skype_subclassing.cpp +++ b/protocols/Skype/src/skype_subclassing.cpp @@ -1,6 +1,6 @@ #include "skype_subclassing.h" -Account* CSkype::newAccount(int oid) +CAccount* CSkype::newAccount(int oid) { return new CAccount(oid, this); } @@ -30,7 +30,7 @@ void CAccount::OnChange(int prop) } }
} -}; +} void CAccount::BlockWhileLoggingIn() { @@ -42,4 +42,21 @@ void CAccount::BlockWhileLoggingOut() { while ( !this->isLoggedOut) Sleep(1); -};
\ No newline at end of file +} + +CContactGroup::CContactGroup(unsigned int oid, SERootObject* root) : ContactGroup(oid, root) +{ +} + +void CContactGroup::OnChange(const ContactRef& contact) +{ +} + + +CContact::CContact(unsigned int oid, SERootObject* root) : Contact(oid, root) +{ +} + +void CContact::OnChange(int prop) +{ +}
\ No newline at end of file |