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{
21 Q_OBJECT
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
A Port associated with a Card.
Definition cardport.h:20
A PulseAudio port.
Definition port.h:19
The primary namespace of PulseAudioQt.
Definition card.cpp:17
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri Jun 14 2024 11:52:34 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.