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:
parent
81af9b0e78
commit
a4a0cb771f
@ -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
|
||||
|
23
src/libtomahawk/collection/AlbumsRequest.cpp
Normal file
23
src/libtomahawk/collection/AlbumsRequest.cpp
Normal 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()
|
||||
{}
|
@ -30,7 +30,7 @@ namespace Tomahawk
|
||||
class DLLEXPORT AlbumsRequest
|
||||
{
|
||||
public:
|
||||
virtual ~AlbumsRequest() {}
|
||||
virtual ~AlbumsRequest();
|
||||
|
||||
virtual void enqueue() = 0;
|
||||
|
||||
|
24
src/libtomahawk/collection/ArtistsRequest.cpp
Normal file
24
src/libtomahawk/collection/ArtistsRequest.cpp
Normal 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()
|
||||
{}
|
||||
|
@ -30,7 +30,7 @@ namespace Tomahawk
|
||||
class DLLEXPORT ArtistsRequest
|
||||
{
|
||||
public:
|
||||
virtual ~ArtistsRequest() {}
|
||||
virtual ~ArtistsRequest();
|
||||
|
||||
virtual void enqueue() = 0;
|
||||
|
||||
|
23
src/libtomahawk/collection/TracksRequest.cpp
Normal file
23
src/libtomahawk/collection/TracksRequest.cpp
Normal 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()
|
||||
{}
|
@ -30,7 +30,7 @@ namespace Tomahawk
|
||||
class DLLEXPORT TracksRequest
|
||||
{
|
||||
public:
|
||||
virtual ~TracksRequest() {}
|
||||
virtual ~TracksRequest();
|
||||
|
||||
virtual void enqueue() = 0;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user