2014-06-25 04:11:11 +08:00
|
|
|
#ifndef FRIEND_H
|
|
|
|
#define FRIEND_H
|
|
|
|
|
|
|
|
#include <QString>
|
2014-06-27 06:42:45 +08:00
|
|
|
#include "widget/form/chatform.h"
|
2014-06-28 00:12:43 +08:00
|
|
|
#include "status.h"
|
2014-06-25 04:11:11 +08:00
|
|
|
|
|
|
|
class FriendWidget;
|
|
|
|
|
|
|
|
struct Friend
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Friend(int FriendId, QString UserId);
|
|
|
|
~Friend();
|
|
|
|
void setName(QString name);
|
|
|
|
void setStatusMessage(QString message);
|
|
|
|
QString getName();
|
|
|
|
|
|
|
|
public:
|
|
|
|
FriendWidget* widget;
|
|
|
|
int friendId;
|
|
|
|
QString userId;
|
|
|
|
ChatForm* chatForm;
|
2014-06-28 00:12:43 +08:00
|
|
|
int hasNewMessages;
|
|
|
|
Status friendStatus;
|
2014-06-25 04:11:11 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // FRIEND_H
|