summaryrefslogtreecommitdiffstats
path: root/src/PulseAudioQt/sink_p.h
blob: 2b8efd2b5b918979c53f2054c9b27c22dc1b85bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
    SPDX-FileCopyrightText: 2018 Nicolas Fella <nicolas.fella@gmx.de>

    SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
*/
#ifndef SINK_P_H
#define SINK_P_H

#include "pulse/introspect.h"
#include "sink.h"

namespace PulseAudioQt
{
class SinkPrivate
{
public:
    explicit SinkPrivate(Sink *q);

    void update(const pa_sink_info *info);

    Sink *q;
    quint32 m_monitorIndex = -1;
};
}
#endif