diff options
Diffstat (limited to 'protocols/Skype/src/skypekit/skypekit.h')
-rw-r--r-- | protocols/Skype/src/skypekit/skypekit.h | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/protocols/Skype/src/skypekit/skypekit.h b/protocols/Skype/src/skypekit/skypekit.h deleted file mode 100644 index 3f1d7b1e58..0000000000 --- a/protocols/Skype/src/skypekit/skypekit.h +++ /dev/null @@ -1,43 +0,0 @@ -#pragma once
-
-#include "common.h"
-
-#include "group.h"
-#include "search.h"
-#include "account.h"
-#include "contact.h"
-#include "message.h"
-#include "transfer.h"
-#include "participant.h"
-#include "conversation.h"
-
-class CSkype : public Skype
-{
-public:
- typedef void (CSkypeProto::* OnMessaged)(CConversation::Ref conversation, CMessage::Ref message);
-
- CAccount* newAccount(int oid);
- CContactGroup* newContactGroup(int oid);
- CConversation* newConversation(int oid);
- CContactSearch* newContactSearch(int oid);
- CParticipant* newParticipant(int oid);
- CContact* newContact(int oid);
- CMessage* newMessage(int oid);
- CTransfer* newTransfer(int oid);
-
- CSkype(int num_threads = 1);
-
- void SetOnMessageCallback(OnMessaged callback, CSkypeProto* proto);
-
- bool CreateConferenceWithConsumers(ConversationRef &conference, const SEStringList &identities);
-
-private:
- CSkypeProto* proto;
- OnMessaged onMessagedCallback;
-
- void OnMessage(
- const MessageRef & message,
- const bool & changesInboxTimestamp,
- const MessageRef & supersedesHistoryMessage,
- const ConversationRef & conversation);
-};
\ No newline at end of file |