* 1/3 Add .clang-format file and travis compilation check * 2/3 Run clang-format * 3/3 Fix compilation problems due to include reordering * 3bis/3 AfterControlStatement: false
31 lines
517 B
C++
31 lines
517 B
C++
#ifndef CARDLIST_H
|
|
#define CARDLIST_H
|
|
|
|
#include <QList>
|
|
|
|
class CardItem;
|
|
|
|
class CardList : public QList<CardItem *>
|
|
{
|
|
private:
|
|
class compareFunctor;
|
|
|
|
protected:
|
|
bool contentsKnown;
|
|
|
|
public:
|
|
enum SortFlags
|
|
{
|
|
SortByName = 1,
|
|
SortByType = 2
|
|
};
|
|
CardList(bool _contentsKnown);
|
|
CardItem *findCard(const int id, const bool remove, int *position = NULL);
|
|
bool getContentsKnown() const
|
|
{
|
|
return contentsKnown;
|
|
}
|
|
void sort(int flags = SortByName);
|
|
};
|
|
|
|
#endif
|