mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
28 lines
460 B
C++
28 lines
460 B
C++
#ifndef FRIEND_H
|
|
#define FRIEND_H
|
|
|
|
#include <QString>
|
|
#include "widget/form/chatform.h"
|
|
|
|
struct 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;
|
|
int hasNewMessages;
|
|
Status friendStatus;
|
|
};
|
|
|
|
#endif // FRIEND_H
|