mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
26 lines
398 B
C
26 lines
398 B
C
|
#ifndef FRIEND_H
|
||
|
#define FRIEND_H
|
||
|
|
||
|
#include <QString>
|
||
|
#include "chatform.h"
|
||
|
|
||
|
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;
|
||
|
};
|
||
|
|
||
|
#endif // FRIEND_H
|