1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-21 00:09:47 +01:00

No implementations in headers.

This commit is contained in:
Teo Mrnjavac 2013-02-06 18:27:54 +01:00
parent 81af9b0e78
commit a4a0cb771f
7 changed files with 76 additions and 3 deletions

View File

@ -208,6 +208,9 @@ list(APPEND libSources
audio/AudioEngine.cpp
collection/Collection.cpp
collection/ArtistsRequest.cpp
collection/AlbumsRequest.cpp
collection/TracksRequest.cpp
database/Database.cpp
database/FuzzyIndex.cpp

View File

@ -0,0 +1,23 @@
/* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
*
* Copyright 2013, Teo Mrnjavac <teo@kde.org>
*
* Tomahawk 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.
*
* Tomahawk 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 Tomahawk. If not, see <http://www.gnu.org/licenses/>.
*/
#include "AlbumsRequest.h"
Tomahawk::AlbumsRequest::~AlbumsRequest()
{}

View File

@ -30,7 +30,7 @@ namespace Tomahawk
class DLLEXPORT AlbumsRequest
{
public:
virtual ~AlbumsRequest() {}
virtual ~AlbumsRequest();
virtual void enqueue() = 0;

View File

@ -0,0 +1,24 @@
/* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
*
* Copyright 2013, Teo Mrnjavac <teo@kde.org>
*
* Tomahawk 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.
*
* Tomahawk 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 Tomahawk. If not, see <http://www.gnu.org/licenses/>.
*/
#include "ArtistsRequest.h"
Tomahawk::ArtistsRequest::~ArtistsRequest()
{}

View File

@ -30,7 +30,7 @@ namespace Tomahawk
class DLLEXPORT ArtistsRequest
{
public:
virtual ~ArtistsRequest() {}
virtual ~ArtistsRequest();
virtual void enqueue() = 0;

View File

@ -0,0 +1,23 @@
/* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
*
* Copyright 2013, Teo Mrnjavac <teo@kde.org>
*
* Tomahawk 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.
*
* Tomahawk 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 Tomahawk. If not, see <http://www.gnu.org/licenses/>.
*/
#include "TracksRequest.h"
Tomahawk::TracksRequest::~TracksRequest()
{}

View File

@ -30,7 +30,7 @@ namespace Tomahawk
class DLLEXPORT TracksRequest
{
public:
virtual ~TracksRequest() {}
virtual ~TracksRequest();
virtual void enqueue() = 0;