Cosmetic source code refactoring.
This commit is contained in:
@ -23,20 +23,20 @@ add_library(${TARGET_APP} STATIC
|
|||||||
genericcore.h
|
genericcore.h
|
||||||
${TS_FILES}
|
${TS_FILES}
|
||||||
constants.h
|
constants.h
|
||||||
|
structs.h
|
||||||
data/settingshandler.h data/settingshandler.cpp
|
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/tablemodel.h model/tablemodel.cpp
|
||||||
model/modelitem.h model/modelitem.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/insertrowscommand.h model/commands/insertrowscommand.cpp
|
||||||
model/commands/removerowscommand.h model/commands/removerowscommand.cpp
|
model/commands/removerowscommand.h model/commands/removerowscommand.cpp
|
||||||
model/commands/edititemcommand.h model/commands/edititemcommand.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
|
network/apiroutes.h
|
||||||
structs.h
|
network/servercommunicator.h network/servercommunicator.cpp
|
||||||
# 3rd party libraries
|
# 3rd party libraries
|
||||||
../3rdParty/rapidcsv/src/rapidcsv.h
|
../3rdParty/rapidcsv/src/rapidcsv.h
|
||||||
)
|
)
|
||||||
|
|||||||
@ -8,6 +8,7 @@
|
|||||||
#include <QProcess>
|
#include <QProcess>
|
||||||
#include <QSettings>
|
#include <QSettings>
|
||||||
#include <QString>
|
#include <QString>
|
||||||
|
#include <QtGui/QUndoStack>
|
||||||
|
|
||||||
#include "../../ApplicationConfig.h"
|
#include "../../ApplicationConfig.h"
|
||||||
#include "CoreConfig.h"
|
#include "CoreConfig.h"
|
||||||
@ -19,8 +20,6 @@
|
|||||||
#include "model/tablemodel.h"
|
#include "model/tablemodel.h"
|
||||||
#include "network/servercommunicator.h"
|
#include "network/servercommunicator.h"
|
||||||
|
|
||||||
#include <QtGui/QUndoStack>
|
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
GenericCore::GenericCore() {
|
GenericCore::GenericCore() {
|
||||||
@ -157,6 +156,7 @@ bool GenericCore::isSyncServerSetup() const {
|
|||||||
|
|
||||||
void GenericCore::onBiddingsChanged(int round, QList<bidding> biddings) {
|
void GenericCore::onBiddingsChanged(int round, QList<bidding> biddings) {
|
||||||
qInfo() << "onBiddingsChanged: round:" << round << "- biddings:" << biddings.count();
|
qInfo() << "onBiddingsChanged: round:" << round << "- biddings:" << biddings.count();
|
||||||
|
// NEXT merge biddings into model
|
||||||
}
|
}
|
||||||
|
|
||||||
void GenericCore::setupModels() {
|
void GenericCore::setupModels() {
|
||||||
|
|||||||
Reference in New Issue
Block a user