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}
23
24IndexedPulseObjectPrivate::IndexedPulseObjectPrivate(IndexedPulseObject *q)
25 : q(q)
26{
27}
28
29IndexedPulseObjectPrivate::~IndexedPulseObjectPrivate()
30{
31}
32
33quint32 IndexedPulseObject::index() const
34{
35 return d->m_index;
36}
37
38} // 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 Mon Nov 18 2024 12:18:01 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.