diff options
Diffstat (limited to 'plugins/!Deprecated/Skype/src/skypekit/account.h')
-rw-r--r-- | plugins/!Deprecated/Skype/src/skypekit/account.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/plugins/!Deprecated/Skype/src/skypekit/account.h b/plugins/!Deprecated/Skype/src/skypekit/account.h new file mode 100644 index 0000000000..a7128598ee --- /dev/null +++ b/plugins/!Deprecated/Skype/src/skypekit/account.h @@ -0,0 +1,20 @@ +#pragma once
+
+#include "common.h"
+
+class CAccount : public Account
+{
+public:
+ typedef DRef<CAccount, Account> Ref;
+ typedef DRefs<CAccount, Account> Refs;
+
+ CAccount(unsigned int oid, CSkypeProto*);
+
+ bool IsOnline();
+ bool SetAvatar(SEBinary avatar, Skype::VALIDATERESULT &result);
+
+private:
+ CSkypeProto* ppro;
+
+ void OnChange(int prop);
+};
\ No newline at end of file |