2010-03-24 00:11:46 +01:00
|
|
|
/* This file is part of Clementine.
|
2010-11-20 14:27:10 +01:00
|
|
|
Copyright 2010, David Sansome <me@davidsansome.com>
|
2010-03-24 00:11:46 +01:00
|
|
|
|
|
|
|
Clementine is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Clementine is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2009-12-26 16:13:38 +01:00
|
|
|
#include "radioservice.h"
|
2010-05-09 17:51:04 +02:00
|
|
|
#include "radiomodel.h"
|
2009-12-26 16:13:38 +01:00
|
|
|
|
2010-05-09 17:51:04 +02:00
|
|
|
RadioService::RadioService(const QString& name, RadioModel* model)
|
|
|
|
: QObject(model),
|
|
|
|
model_(model),
|
2009-12-26 16:13:38 +01:00
|
|
|
name_(name)
|
|
|
|
{
|
|
|
|
}
|
2010-01-18 03:23:55 +01:00
|
|
|
|
2010-05-18 22:43:10 +02:00
|
|
|
PlaylistItem::SpecialLoadResult RadioService::StartLoading(const QUrl &url) {
|
|
|
|
return PlaylistItem::SpecialLoadResult(
|
|
|
|
PlaylistItem::SpecialLoadResult::TrackAvailable, url, url);
|
|
|
|
}
|
|
|
|
|
|
|
|
PlaylistItem::SpecialLoadResult RadioService::LoadNext(const QUrl&) {
|
|
|
|
return PlaylistItem::SpecialLoadResult();
|
2010-01-18 03:23:55 +01:00
|
|
|
}
|