aboutsummaryrefslogtreecommitdiff
path: root/lib/soundcore.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/soundcore.h')
-rw-r--r--lib/soundcore.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/soundcore.h b/lib/soundcore.h
index 7e88942f7..c1c3a3be5 100644
--- a/lib/soundcore.h
+++ b/lib/soundcore.h
@@ -20,7 +20,9 @@
#ifndef SOUNDCORE_H
#define SOUNDCORE_H
+
#include <QObject>
+#include <QString>
#include "decoder.h"
#include "output.h"
@@ -158,6 +160,9 @@ signals:
*/
void titleChanged(const QString& title);
+private slots:
+ bool decode();
+
private:
Decoder* m_decoder;
Output* m_output;
@@ -170,6 +175,7 @@ private:
int m_preamp;
int m_bands[10];
Visualization *m_vis;
+ QString m_source;
};
#endif