#ifndef CARDLIST_H #define CARDLIST_H #include "carditem.h" #include class CardList : public QList { protected: bool contentsKnown; public: CardList(bool _contentsKnown); CardItem *findCard(const int id, const bool remove, int *position = NULL); bool getContentsKnown() const { return contentsKnown; } }; #endif