added function to get list with timer objects
This commit is contained in:
parent
f1bf5ac407
commit
d982bafab1
2 changed files with 5 additions and 0 deletions
|
@ -130,6 +130,7 @@ public slots:
|
||||||
RaceState getState();
|
RaceState getState();
|
||||||
StartAction getNextStartAction();
|
StartAction getNextStartAction();
|
||||||
virtual QVariantList getNextStartActionDetails();
|
virtual QVariantList getNextStartActionDetails();
|
||||||
|
QList<ScStwTimer*> getTimers();
|
||||||
QVariantList getTimerDetailList();
|
QVariantList getTimerDetailList();
|
||||||
|
|
||||||
protected slots:
|
protected slots:
|
||||||
|
|
|
@ -387,6 +387,10 @@ ScStwRace::StartAction ScStwRace::getNextStartAction()
|
||||||
return this->nextStartAction;
|
return this->nextStartAction;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QList<ScStwTimer*> ScStwRace::getTimers() {
|
||||||
|
return this->timers;
|
||||||
|
}
|
||||||
|
|
||||||
QVariantList ScStwRace::getTimerDetailList() {
|
QVariantList ScStwRace::getTimerDetailList() {
|
||||||
QVariantList tmpTimers;
|
QVariantList tmpTimers;
|
||||||
|
|
||||||
|
|
Reference in a new issue