1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
qTox/friendlist.h

22 lines
364 B
C
Raw Normal View History

2014-06-24 22:11:11 +02:00
#ifndef FRIENDLIST_H
#define FRIENDLIST_H
#include <QString>
#include <QList>
2014-06-30 22:52:03 +02:00
struct Friend;
2014-06-24 22:11:11 +02:00
class FriendList
{
public:
FriendList();
static Friend* addFriend(int friendId, QString userId);
static Friend* findFriend(int friendId);
static void removeFriend(int friendId);
public:
static QList<Friend*> friendList;
};
#endif // FRIENDLIST_H