[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,11 +9,6 @@
class DeckListModel; class DeckListModel;
class DeckListStatisticsAnalyzer : public QObject
{
Q_OBJECT
public:
struct DeckListStatisticsAnalyzerConfig struct DeckListStatisticsAnalyzerConfig
{ {
bool computeManaBase = true; bool computeManaBase = true;
@ -21,6 +16,12 @@ public:
bool computeDevotion = true; bool computeDevotion = true;
}; };
class DeckListStatisticsAnalyzer : public QObject
{
Q_OBJECT
public:
explicit DeckListStatisticsAnalyzer(QObject *parent, explicit DeckListStatisticsAnalyzer(QObject *parent,
DeckListModel *model, DeckListModel *model,
DeckListStatisticsAnalyzerConfig cfg = DeckListStatisticsAnalyzerConfig()); DeckListStatisticsAnalyzerConfig cfg = DeckListStatisticsAnalyzerConfig());