summaryrefslogtreecommitdiff
path: root/musiccontroller_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'musiccontroller_p.h')
-rw-r--r--musiccontroller_p.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/musiccontroller_p.h b/musiccontroller_p.h
new file mode 100644
index 0000000..5711e65
--- /dev/null
+++ b/musiccontroller_p.h
@@ -0,0 +1,28 @@
+#ifndef WATCHFISH_MUSICCONTROLLER_P_H
+#define WATCHFISH_MUSICCONTROLLER_P_H
+
+#include <QtDBus/QDBusServiceWatcher>
+#include <QtDBus/QDBusContext>
+
+#include "musiccontroller.h"
+
+namespace watchfish
+{
+
+class MusicControllerPrivate : public QObject, protected QDBusContext
+{
+ Q_OBJECT
+
+public:
+ MusicControllerPrivate(MusicController *q);
+ ~MusicControllerPrivate();
+
+private:
+ MusicController * const q_ptr;
+ Q_DECLARE_PUBLIC(MusicController)
+};
+
+}
+
+#endif // WATCHFISH_MUSICCONTROLLER_P_H
+