PulseAudio Qt Bindings

indexedpulseobject.cpp
1/*
2 SPDX-FileCopyrightText: 2021 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
7#include "indexedpulseobject.h"
8#include "indexedpulseobject_p.h"
9
10#include "context.h"
11
12namespace PulseAudioQt
13{
14IndexedPulseObject::IndexedPulseObject(QObject *parent)
15 : PulseObject(parent)
16 , d(new IndexedPulseObjectPrivate(this))
17{
18}
19
20IndexedPulseObject::~IndexedPulseObject()
21{
22 delete d;
23}
24
25IndexedPulseObjectPrivate::IndexedPulseObjectPrivate(IndexedPulseObject *q)
26 : q(q)
27{
28}
29
30IndexedPulseObjectPrivate::~IndexedPulseObjectPrivate()
31{
32}
33
34quint32 IndexedPulseObject::index() const
35{
36 return d->m_index;
37}
38
39} // 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.