Add cpp files for classes with only header files

This commit is contained in:
Jonas Kvinge
2024-08-12 00:48:16 +02:00
parent 1ebcd61a75
commit f624b7a331
19 changed files with 317 additions and 47 deletions

View File

@@ -2,6 +2,7 @@
* Strawberry Music Player
* This file was part of Clementine.
* Copyright 2010, David Sansome <me@davidsansome.com>
* Copyright 2018-2024, Jonas Kvinge <jonas@jkvinge.net>
*
* Strawberry is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -23,9 +24,6 @@
#include "config.h"
#include <QObject>
#include <QMimeData>
#include "core/shared_ptr.h"
#include "core/mimedata.h"
#include "core/song.h"
@@ -36,7 +34,7 @@ class SongMimeData : public MimeData {
Q_OBJECT
public:
explicit SongMimeData(QObject* = nullptr) : MimeData(), backend(nullptr) {}
explicit SongMimeData(QObject *parent = nullptr);
SharedPtr<CollectionBackendInterface> backend;
SongList songs;