summaryrefslogtreecommitdiffstats
path: root/src/PulseAudioQt/sinkinput_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/PulseAudioQt/sinkinput_p.h')
-rw-r--r--src/PulseAudioQt/sinkinput_p.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/PulseAudioQt/sinkinput_p.h b/src/PulseAudioQt/sinkinput_p.h
new file mode 100644
index 0000000..f7748c9
--- /dev/null
+++ b/src/PulseAudioQt/sinkinput_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 SINKINPUT_P_H
+#define SINKINPUT_P_H
+
+#include "sinkinput.h"
+#include <pulse/introspect.h>
+
+namespace PulseAudioQt
+{
+class SinkInputPrivate
+{
+public:
+ explicit SinkInputPrivate(SinkInput *q);
+
+ SinkInput *q;
+
+ void update(const pa_sink_input_info *info);
+};
+}
+
+#endif