[VDE] Move struct up to not confuse compiler.

This commit is contained in:
Brübach, Lukas 2025-12-02 12:20:27 +01:00
parent 8a683d839e
commit c6d9c613ce

View file

@ -9,18 +9,19 @@
class DeckListModel;
struct DeckListStatisticsAnalyzerConfig
{
bool computeManaBase = true;
bool computeManaCurve = true;
bool computeDevotion = true;
};
class DeckListStatisticsAnalyzer : public QObject
{
Q_OBJECT
public:
struct DeckListStatisticsAnalyzerConfig
{
bool computeManaBase = true;
bool computeManaCurve = true;
bool computeDevotion = true;
};
explicit DeckListStatisticsAnalyzer(QObject *parent,
DeckListModel *model,
DeckListStatisticsAnalyzerConfig cfg = DeckListStatisticsAnalyzerConfig());