From a4a0cb771f39bc83e9d0d8de7702f4e57a6e6478 Mon Sep 17 00:00:00 2001 From: Teo Mrnjavac Date: Wed, 6 Feb 2013 18:27:54 +0100 Subject: [PATCH] No implementations in headers. --- src/libtomahawk/CMakeLists.txt | 3 +++ src/libtomahawk/collection/AlbumsRequest.cpp | 23 ++++++++++++++++++ src/libtomahawk/collection/AlbumsRequest.h | 2 +- src/libtomahawk/collection/ArtistsRequest.cpp | 24 +++++++++++++++++++ src/libtomahawk/collection/ArtistsRequest.h | 2 +- src/libtomahawk/collection/TracksRequest.cpp | 23 ++++++++++++++++++ src/libtomahawk/collection/TracksRequest.h | 2 +- 7 files changed, 76 insertions(+), 3 deletions(-) create mode 100644 src/libtomahawk/collection/AlbumsRequest.cpp create mode 100644 src/libtomahawk/collection/ArtistsRequest.cpp create mode 100644 src/libtomahawk/collection/TracksRequest.cpp diff --git a/src/libtomahawk/CMakeLists.txt b/src/libtomahawk/CMakeLists.txt index 0140e9637..18fa35ed0 100644 --- a/src/libtomahawk/CMakeLists.txt +++ b/src/libtomahawk/CMakeLists.txt @@ -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 diff --git a/src/libtomahawk/collection/AlbumsRequest.cpp b/src/libtomahawk/collection/AlbumsRequest.cpp new file mode 100644 index 000000000..8fc5d3dbd --- /dev/null +++ b/src/libtomahawk/collection/AlbumsRequest.cpp @@ -0,0 +1,23 @@ +/* === This file is part of Tomahawk Player - === + * + * Copyright 2013, Teo Mrnjavac + * + * 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 . + */ + + +#include "AlbumsRequest.h" + +Tomahawk::AlbumsRequest::~AlbumsRequest() +{} diff --git a/src/libtomahawk/collection/AlbumsRequest.h b/src/libtomahawk/collection/AlbumsRequest.h index af3771135..0bb457867 100644 --- a/src/libtomahawk/collection/AlbumsRequest.h +++ b/src/libtomahawk/collection/AlbumsRequest.h @@ -30,7 +30,7 @@ namespace Tomahawk class DLLEXPORT AlbumsRequest { public: - virtual ~AlbumsRequest() {} + virtual ~AlbumsRequest(); virtual void enqueue() = 0; diff --git a/src/libtomahawk/collection/ArtistsRequest.cpp b/src/libtomahawk/collection/ArtistsRequest.cpp new file mode 100644 index 000000000..59d46c001 --- /dev/null +++ b/src/libtomahawk/collection/ArtistsRequest.cpp @@ -0,0 +1,24 @@ +/* === This file is part of Tomahawk Player - === + * + * Copyright 2013, Teo Mrnjavac + * + * 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 . + */ + + +#include "ArtistsRequest.h" + +Tomahawk::ArtistsRequest::~ArtistsRequest() +{} + diff --git a/src/libtomahawk/collection/ArtistsRequest.h b/src/libtomahawk/collection/ArtistsRequest.h index db5a32975..49c2de750 100644 --- a/src/libtomahawk/collection/ArtistsRequest.h +++ b/src/libtomahawk/collection/ArtistsRequest.h @@ -30,7 +30,7 @@ namespace Tomahawk class DLLEXPORT ArtistsRequest { public: - virtual ~ArtistsRequest() {} + virtual ~ArtistsRequest(); virtual void enqueue() = 0; diff --git a/src/libtomahawk/collection/TracksRequest.cpp b/src/libtomahawk/collection/TracksRequest.cpp new file mode 100644 index 000000000..042e693d5 --- /dev/null +++ b/src/libtomahawk/collection/TracksRequest.cpp @@ -0,0 +1,23 @@ +/* === This file is part of Tomahawk Player - === + * + * Copyright 2013, Teo Mrnjavac + * + * 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 . + */ + + +#include "TracksRequest.h" + +Tomahawk::TracksRequest::~TracksRequest() +{} diff --git a/src/libtomahawk/collection/TracksRequest.h b/src/libtomahawk/collection/TracksRequest.h index 34de43878..cc92ad034 100644 --- a/src/libtomahawk/collection/TracksRequest.h +++ b/src/libtomahawk/collection/TracksRequest.h @@ -30,7 +30,7 @@ namespace Tomahawk class DLLEXPORT TracksRequest { public: - virtual ~TracksRequest() {} + virtual ~TracksRequest(); virtual void enqueue() = 0;