File indexing completed on 2024-03-24 16:14:41

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 SOURCEOUTPUT_P_H
0007 #define SOURCEOUTPUT_P_H
0008 
0009 #include "sourceoutput.h"
0010 #include <pulse/introspect.h>
0011 
0012 namespace PulseAudioQt
0013 {
0014 class SourceOutputPrivate
0015 {
0016 public:
0017     explicit SourceOutputPrivate(SourceOutput *q);
0018 
0019     void update(const pa_source_output_info *info);
0020 
0021     SourceOutput *q;
0022 };
0023 
0024 }
0025 
0026 #endif