From 5afdbd6dd92cf891879234022c1784440169b72c Mon Sep 17 00:00:00 2001 From: Bent Witthold Date: Sat, 14 Feb 2026 10:19:53 +0100 Subject: [PATCH] Cosmetic source code refactoring. --- libs/BeetRoundCore/CMakeLists.txt | 14 +++++++------- libs/BeetRoundCore/genericcore.cpp | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/libs/BeetRoundCore/CMakeLists.txt b/libs/BeetRoundCore/CMakeLists.txt index a028257..fcda6a6 100644 --- a/libs/BeetRoundCore/CMakeLists.txt +++ b/libs/BeetRoundCore/CMakeLists.txt @@ -23,20 +23,20 @@ add_library(${TARGET_APP} STATIC genericcore.h ${TS_FILES} constants.h + structs.h data/settingshandler.h data/settingshandler.cpp + data/filehandler.h data/filehandler.cpp + formats/jsonparser.h formats/jsonparser.cpp + formats/csvparser.h formats/csvparser.cpp + model/metadata.h model/tablemodel.h model/tablemodel.cpp model/modelitem.h model/modelitem.cpp - formats/jsonparser.h formats/jsonparser.cpp + model/generalsortfiltermodel.h model/generalsortfiltermodel.cpp model/commands/insertrowscommand.h model/commands/insertrowscommand.cpp model/commands/removerowscommand.h model/commands/removerowscommand.cpp model/commands/edititemcommand.h model/commands/edititemcommand.cpp - data/filehandler.h data/filehandler.cpp - model/metadata.h - formats/csvparser.h formats/csvparser.cpp - model/generalsortfiltermodel.h model/generalsortfiltermodel.cpp - network/servercommunicator.h network/servercommunicator.cpp network/apiroutes.h - structs.h + network/servercommunicator.h network/servercommunicator.cpp # 3rd party libraries ../3rdParty/rapidcsv/src/rapidcsv.h ) diff --git a/libs/BeetRoundCore/genericcore.cpp b/libs/BeetRoundCore/genericcore.cpp index bc57d80..3942fc0 100644 --- a/libs/BeetRoundCore/genericcore.cpp +++ b/libs/BeetRoundCore/genericcore.cpp @@ -8,6 +8,7 @@ #include #include #include +#include #include "../../ApplicationConfig.h" #include "CoreConfig.h" @@ -19,8 +20,6 @@ #include "model/tablemodel.h" #include "network/servercommunicator.h" -#include - using namespace std; GenericCore::GenericCore() { @@ -157,6 +156,7 @@ bool GenericCore::isSyncServerSetup() const { void GenericCore::onBiddingsChanged(int round, QList biddings) { qInfo() << "onBiddingsChanged: round:" << round << "- biddings:" << biddings.count(); + // NEXT merge biddings into model } void GenericCore::setupModels() {