mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-22 18:32:17 -07:00
Remove unused imports.
This commit is contained in:
parent
7f492f9e4b
commit
018c57b7fa
1 changed files with 0 additions and 8 deletions
|
|
@ -1,20 +1,13 @@
|
||||||
#ifndef DECKLIST_H
|
#ifndef DECKLIST_H
|
||||||
#define DECKLIST_H
|
#define DECKLIST_H
|
||||||
|
|
||||||
#include <QDebug>
|
|
||||||
#include <QList>
|
|
||||||
#include <QMap>
|
#include <QMap>
|
||||||
#include <QObject>
|
|
||||||
#include <QPair>
|
|
||||||
#include <QSet>
|
|
||||||
#include <QStringList>
|
|
||||||
#include <QVector>
|
#include <QVector>
|
||||||
|
|
||||||
// Required on Mac. Forward declaration doesn't work. Don't ask why.
|
// Required on Mac. Forward declaration doesn't work. Don't ask why.
|
||||||
#include <QtCore/QXmlStreamReader>
|
#include <QtCore/QXmlStreamReader>
|
||||||
#include <QtCore/QXmlStreamWriter>
|
#include <QtCore/QXmlStreamWriter>
|
||||||
#include <common/pb/move_card_to_zone.pb.h>
|
#include <common/pb/move_card_to_zone.pb.h>
|
||||||
#include <utility>
|
|
||||||
|
|
||||||
class CardDatabase;
|
class CardDatabase;
|
||||||
class QIODevice;
|
class QIODevice;
|
||||||
|
|
@ -182,7 +175,6 @@ public:
|
||||||
: AbstractDecklistCardNode(_parent), name(std::move(_name)), number(_number),
|
: AbstractDecklistCardNode(_parent), name(std::move(_name)), number(_number),
|
||||||
cardSetName(std::move(_cardSetName)), cardSetNumber(std::move(_cardSetNumber))
|
cardSetName(std::move(_cardSetName)), cardSetNumber(std::move(_cardSetNumber))
|
||||||
{
|
{
|
||||||
qDebug() << "Adding" << name << number << cardSetName << cardSetNumber;
|
|
||||||
}
|
}
|
||||||
explicit DecklistCardNode(DecklistCardNode *other, InnerDecklistNode *_parent);
|
explicit DecklistCardNode(DecklistCardNode *other, InnerDecklistNode *_parent);
|
||||||
int getNumber() const override
|
int getNumber() const override
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue