mirror of https://github.com/qTox/qTox.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
361 B
22 lines
361 B
#ifndef GROUPLIST_H |
|
#define GROUPLIST_H |
|
|
|
#include <QString> |
|
#include <QList> |
|
#include <QMap> |
|
|
|
class Group; |
|
|
|
class GroupList |
|
{ |
|
public: |
|
GroupList(); |
|
static Group* addGroup(int groupId, QString name); |
|
static Group* findGroup(int groupId); |
|
static void removeGroup(int groupId); |
|
|
|
public: |
|
static QList<Group*> groupList; |
|
}; |
|
|
|
#endif // GROUPLIST_H
|
|
|