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();
|
||||
StartAction getNextStartAction();
|
||||
virtual QVariantList getNextStartActionDetails();
|
||||
QList<ScStwTimer*> getTimers();
|
||||
QVariantList getTimerDetailList();
|
||||
|
||||
protected slots:
|
||||
|
|
|
@ -387,6 +387,10 @@ ScStwRace::StartAction ScStwRace::getNextStartAction()
|
|||
return this->nextStartAction;
|
||||
}
|
||||
|
||||
QList<ScStwTimer*> ScStwRace::getTimers() {
|
||||
return this->timers;
|
||||
}
|
||||
|
||||
QVariantList ScStwRace::getTimerDetailList() {
|
||||
QVariantList tmpTimers;
|
||||
|
||||
|
|
Reference in a new issue