5 Star 4 Fork 4

zhjun5337 / kopete-qq

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
qqfakeserver.h 1.79 KB
一键复制 编辑 原始数据 按行查看 历史
zhjun5337 提交于 2014-07-16 21:27 . Merge old to master
/*
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
C++
1
https://gitee.com/zhjun5337/kopete-qq.git
git@gitee.com:zhjun5337/kopete-qq.git
zhjun5337
kopete-qq
kopete-qq
master

搜索帮助