/src/libtomahawk/database/DatabaseCommand_ModifyPlaylist.cpp

http://github.com/tomahawk-player/tomahawk · C++ · 46 lines · 20 code · 8 blank · 18 comment · 0 complexity · 8841dc4bfab60e53cdcaf5dcfc898152 MD5 · raw file

  1. /* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
  2. *
  3. * Copyright 2010-2011, Christian Muehlhaeuser <muesli@tomahawk-player.org>
  4. * Copyright 2010-2011, Jeff Mitchell <jeff@tomahawk-player.org>
  5. *
  6. * Tomahawk is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * Tomahawk is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #include "DatabaseCommand_ModifyPlaylist.h"
  20. #include "utils/Logger.h"
  21. #include "Playlist.h"
  22. #include "PlaylistEntry.h"
  23. #include "Source.h"
  24. using namespace Tomahawk;
  25. DatabaseCommand_ModifyPlaylist::DatabaseCommand_ModifyPlaylist( Playlist* playlist, const QList< plentry_ptr >& entries, Mode mode )
  26. : DatabaseCommand()
  27. , m_playlist( playlist )
  28. , m_entries( entries )
  29. , m_mode( mode )
  30. {
  31. }
  32. DatabaseCommand_ModifyPlaylist::~DatabaseCommand_ModifyPlaylist()
  33. {}
  34. void
  35. DatabaseCommand_ModifyPlaylist::exec( DatabaseImpl* lib )
  36. {
  37. Q_UNUSED( lib );
  38. }