#ifndef PLAYERLIST_H #define PLAYERLIST_H #include "player.h" #include class PlayerList : public QList { public: Player *findPlayer(int id) const; }; #endif