start implementing model for koto artist
This commit is contained in:
parent
e3a00ab8ac
commit
ddfd17c67c
12 changed files with 267 additions and 34 deletions
|
@ -62,10 +62,18 @@ QString KotoArtist::getName() {
|
|||
return QString {this->name};
|
||||
}
|
||||
|
||||
QString KotoArtist::getPath() {
|
||||
return QString {this->path};
|
||||
}
|
||||
|
||||
QList<KotoTrack*> KotoArtist::getTracks() {
|
||||
return QList {this->tracks};
|
||||
}
|
||||
|
||||
QUuid KotoArtist::getUuid() {
|
||||
return this->uuid;
|
||||
}
|
||||
|
||||
void KotoArtist::removeAlbum(KotoAlbum* album) {
|
||||
this->albums.removeOne(album);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue