mirror of
https://github.com/clementine-player/Clementine
synced 2025-01-31 03:27:40 +01:00
16 lines
196 B
C++
16 lines
196 B
C++
#ifndef SONGMIMEDATA_H
|
|
#define SONGMIMEDATA_H
|
|
|
|
#include <QMimeData>
|
|
|
|
#include "song.h"
|
|
|
|
class SongMimeData : public QMimeData {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
SongList songs;
|
|
};
|
|
|
|
#endif // SONGMIMEDATA_H
|