File indexing completed on 2024-09-08 07:21:39
0001 /* 0002 SPDX-FileCopyrightText: 2018 Nicolas Fella <nicolas.fella@gmx.de> 0003 0004 SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL 0005 */ 0006 #ifndef SINKINPUT_P_H 0007 #define SINKINPUT_P_H 0008 0009 #include "sinkinput.h" 0010 #include <pulse/introspect.h> 0011 0012 namespace PulseAudioQt 0013 { 0014 class SinkInputPrivate 0015 { 0016 public: 0017 explicit SinkInputPrivate(SinkInput *q); 0018 0019 SinkInput *q; 0020 0021 void update(const pa_sink_input_info *info); 0022 }; 0023 } 0024 0025 #endif