14 lines
307 B
C++
14 lines
307 B
C++
#include "../headers/brcompetition.h"
|
|
|
|
BRCompetition::BRCompetition(BRProvider* provider, BRWidget::BRFederation federation, int id) : BRWidget(provider, federation)
|
|
{
|
|
this->id = id;
|
|
}
|
|
|
|
QString BRCompetition::getName() {
|
|
return this->name;
|
|
}
|
|
|
|
BRWidget::BRWidgetStatusCode BRCompetition::load() {
|
|
|
|
}
|