PulseAudio Qt Bindings

cardport.cpp
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#include "cardport.h"
7#include "port_p.h"
8
9namespace PulseAudioQt
10{
11CardPort::CardPort(QObject *parent)
12 : Port(parent)
13{
14}
15
16CardPort::~CardPort()
17{
18}
19
20void 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:17
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:20:07 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.