Clementine-audio-player-Mac.../src/networkremote/remoteclient.cpp

11 lines
244 B
C++
Raw Normal View History

#include "remoteclient.h"
2015-01-19 13:47:14 +01:00
#include "networkremote/songsender.h"
RemoteClient::RemoteClient(Application* app, QObject* parent)
: QObject(parent),
app_(app),
2015-01-19 13:47:14 +01:00
downloader_(false),
song_sender_(new SongSender(app, this)) {
}