File indexing completed on 2024-04-14 04:38:34

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 SINK_P_H
0007 #define SINK_P_H
0008 
0009 #include "pulse/introspect.h"
0010 #include "sink.h"
0011 
0012 namespace PulseAudioQt
0013 {
0014 class SinkPrivate
0015 {
0016 public:
0017     explicit SinkPrivate(Sink *q);
0018 
0019     void update(const pa_sink_info *info);
0020 
0021     Sink *q;
0022     quint32 m_monitorIndex = -1;
0023 };
0024 }
0025 #endif