File indexing completed on 2024-09-15 07:09:50
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 CLIENT_P_H 0007 #define CLIENT_P_H 0008 0009 #include "client.h" 0010 #include <pulse/introspect.h> 0011 0012 namespace PulseAudioQt 0013 { 0014 class ClientPrivate 0015 { 0016 public: 0017 ClientPrivate(Client *q); 0018 0019 void update(const pa_client_info *info); 0020 0021 Client *q; 0022 }; 0023 0024 } // PulseAudioQt 0025 0026 #endif