PulseAudio Qt Bindings

cardport.cpp
1 /*
2  SPDX-FileCopyrightText: 2018 Nicolas Fella <[email protected]>
3 
4  SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
5 */
6 #include "cardport.h"
7 #include "port_p.h"
8 
9 namespace PulseAudioQt
10 {
11 CardPort::CardPort(QObject *parent)
12  : Port(parent)
13 {
14 }
15 
16 CardPort::~CardPort()
17 {
18 }
19 
20 void CardPort::update(const pa_card_port_info *info)
21 {
22  Port::d->setInfo(info);
23  PulseObject::d->updateProperties(info);
24 }
25 
26 } // PulseAudioQt
The primary namespace of PulseAudioQt.
Definition: card.cpp:16
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Fri Sep 22 2023 04:02:09 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.