summaryrefslogtreecommitdiffstats
path: root/src/PulseAudioQt/source_p.h
blob: 46becdfeadac5eccd9fca4299eea4750c7889ac0 (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
/*
    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 SOURCE_P_H
#define SOURCE_P_H

#include "source.h"
#include <pulse/introspect.h>

namespace PulseAudioQt
{
class SourcePrivate
{
public:
    explicit SourcePrivate(Source *q);

    void update(const pa_source_info *info);

    Source *q;
};
}
#endif