1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/zhjun5337-kopete-qq

В этом репозитории не указан файл с открытой лицензией (LICENSE). При использовании обратитесь к конкретному описанию проекта и его зависимостям в коде.
Клонировать/Скачать
qqfakeserver.h 1.8 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
zhjun5337 Отправлено 16.07.2014 17:27 53c538d
/*
qqfakeserver.h - Kopete QQ Protocol
Copyright (c) 2003 by Will Stephenson <will@stevello.free-online.co.uk>
Kopete (c) 2002-2003 by the Kopete developers <kopete-devel@kde.org>
*************************************************************************
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
*************************************************************************
*/
#ifndef TESTBEDFAKESERVER_H
#define TESTBEDFAKESERVER_H
#include <QList>
#include <QObject>
class QQIncomingMessage;
/**
* This is a interface to a dummy IM server
* @author Will Stephenson
*/
class QQFakeServer : public QObject
{
Q_OBJECT
public:
QQFakeServer();
~QQFakeServer();
/**
* Called to simulate sending a message to a remote contact
*/
void sendMessage( const QString &contactId, const QString &message );
public slots:
/**
* A message came in off the simulated wire.
* In reality, a message on the incoming message list
* connects to this slot when it's time to 'arrive'
*/
void incomingMessage( QString message );
signals:
/**
* Tells the account that a message arrived
*/
void messageReceived( const QString &message );
protected:
/**
* Utility method, just clears delivered messages from the
* incoming message list
*/
void purgeMessages();
/**
* List of incoming messages
*/
QList<QQIncomingMessage*> m_incomingMessages;
};
#endif

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/zhjun5337-kopete-qq.git
git@api.gitlife.ru:oschina-mirror/zhjun5337-kopete-qq.git
oschina-mirror
zhjun5337-kopete-qq
zhjun5337-kopete-qq
master