PulseAudio Qt Bindings

port.cpp
1/*
2 SPDX-FileCopyrightText: 2014-2015 Harald Sitter <sitter@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
5*/
6
7#include "port.h"
8#include "port_p.h"
9namespace PulseAudioQt
10{
11Port::Port(QObject *parent)
12 : Profile(parent)
13 , d(new PortPrivate(this))
14{
15}
16
17Port::~Port()
18{
19 delete d;
20}
21
22PortPrivate::PortPrivate(Port *q)
23 : q(q)
24{
25}
26
27PortPrivate::~PortPrivate()
28{
29}
30
31Port::Type Port::type() const
32{
33 return d->m_type;
34}
35
36} // 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.