diff --git a/ScStwLibraries/headers/scstwrace.h b/ScStwLibraries/headers/scstwrace.h index 206a457..f4d8718 100644 --- a/ScStwLibraries/headers/scstwrace.h +++ b/ScStwLibraries/headers/scstwrace.h @@ -130,6 +130,7 @@ public slots: RaceState getState(); StartAction getNextStartAction(); virtual QVariantList getNextStartActionDetails(); + QList getTimers(); QVariantList getTimerDetailList(); protected slots: diff --git a/ScStwLibraries/sources/scstwrace.cpp b/ScStwLibraries/sources/scstwrace.cpp index 5998f13..4c4adb1 100644 --- a/ScStwLibraries/sources/scstwrace.cpp +++ b/ScStwLibraries/sources/scstwrace.cpp @@ -387,6 +387,10 @@ ScStwRace::StartAction ScStwRace::getNextStartAction() return this->nextStartAction; } +QList ScStwRace::getTimers() { + return this->timers; +} + QVariantList ScStwRace::getTimerDetailList() { QVariantList tmpTimers;