File indexing completed on 2024-10-13 04:16:38
0001 /* 0002 SPDX-FileCopyrightText: 2014-2015 Harald Sitter <sitter@kde.org> 0003 0004 SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL 0005 */ 0006 0007 #ifndef CLIENT_H 0008 #define CLIENT_H 0009 0010 #include "indexedpulseobject.h" 0011 #include "pulseaudioqt_export.h" 0012 0013 struct pa_client_info; 0014 0015 namespace PulseAudioQt 0016 { 0017 class PULSEAUDIOQT_EXPORT Client : public IndexedPulseObject 0018 { 0019 Q_OBJECT 0020 public: 0021 ~Client(); 0022 0023 private: 0024 explicit Client(QObject *parent); 0025 0026 class ClientPrivate *const d; 0027 friend class MapBase<Client, pa_client_info>; 0028 }; 0029 0030 } // PulseAudioQt 0031 0032 #endif // CLIENT_H