PulseAudio Qt Bindings

cardport.h
1/*
2 SPDX-FileCopyrightText: 2018 Nicolas Fella <nicolas.fella@gmx.de>
3
4 SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
5*/
6#ifndef CARDPORT_H
7#define CARDPORT_H
8
9#include "port.h"
10
11#include <QObject>
12#include <pulse/introspect.h>
13
14namespace PulseAudioQt
15{
16/**
17 * A Port associated with a Card.
18 */
19class PULSEAUDIOQT_EXPORT CardPort : public Port
20{
22
23public:
24 ~CardPort() override;
25
26 void update(const pa_card_port_info *info);
27
28private:
29 explicit CardPort(QObject *parent);
30
31 friend class CardPrivate;
32};
33
34} // PulseAudioQt
35
36#endif
The primary namespace of PulseAudioQt.
Definition card.cpp:17
Q_OBJECTQ_OBJECT
QObject * parent() const const
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Jan 24 2025 11:50:40 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.