summaryrefslogtreecommitdiffstats
path: root/src/PulseAudioQt/module_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/PulseAudioQt/module_p.h')
-rw-r--r--src/PulseAudioQt/module_p.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/PulseAudioQt/module_p.h b/src/PulseAudioQt/module_p.h
new file mode 100644
index 0000000..36b7dab
--- /dev/null
+++ b/src/PulseAudioQt/module_p.h
@@ -0,0 +1,29 @@
+/*
+ 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 MODULE_P_H
+#define MODULE_P_H
+
+#include "module.h"
+#include <pulse/introspect.h>
+
+namespace PulseAudioQt
+{
+class ModulePrivate
+{
+public:
+ explicit ModulePrivate(Module *q);
+ virtual ~ModulePrivate();
+
+ void update(const pa_module_info *info);
+
+ Module *q;
+
+ QString m_argument;
+};
+
+} // PulseAudioQt
+
+#endif