Cockatrice/cockatrice/src/cardlist.h
Max-Wilhelm Bruker c3fb56581d small changes
2009-07-01 01:05:52 +02:00

17 lines
334 B
C++

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