summaryrefslogtreecommitdiffstats
path: root/src/PulseAudioQt/sink_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/PulseAudioQt/sink_p.h')
-rw-r--r--src/PulseAudioQt/sink_p.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/PulseAudioQt/sink_p.h b/src/PulseAudioQt/sink_p.h
new file mode 100644
index 0000000..2b8efd2
--- /dev/null
+++ b/src/PulseAudioQt/sink_p.h
@@ -0,0 +1,25 @@
+/*
+ SPDX-FileCopyrightText: 2018 Nicolas Fella <nicolas.fella@gmx.de>
+
+ SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
+*/
+#ifndef SINK_P_H
+#define SINK_P_H
+
+#include "pulse/introspect.h"
+#include "sink.h"
+
+namespace PulseAudioQt
+{
+class SinkPrivate
+{
+public:
+ explicit SinkPrivate(Sink *q);
+
+ void update(const pa_sink_info *info);
+
+ Sink *q;
+ quint32 m_monitorIndex = -1;
+};
+}
+#endif