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

22 lines
363 B
C
Raw Normal View History

2014-06-25 04:11:11 +08:00
#ifndef FRIENDLIST_H
#define FRIENDLIST_H
#include <QString>
#include <QList>
class Friend;
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