aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General/rgscan/rgscaner.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/General/rgscan/rgscaner.h')
-rw-r--r--src/plugins/General/rgscan/rgscaner.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/plugins/General/rgscan/rgscaner.h b/src/plugins/General/rgscan/rgscaner.h
index 79c2b058e..9878389a5 100644
--- a/src/plugins/General/rgscan/rgscaner.h
+++ b/src/plugins/General/rgscan/rgscaner.h
@@ -44,8 +44,10 @@ public:
bool prepare(const QString &url);
void stop();
bool isRunning();
+ bool hasValues() const;
double gain() const;
double peak() const;
+ QString url() const;
GainHandle_t *handle();
signals:
@@ -54,11 +56,11 @@ signals:
private:
void run();
+ void deinit();
InputSource *m_source;
Decoder *m_decoder;
QMutex m_mutex;
- bool m_user_stop;
- bool m_is_running;
+ bool m_user_stop, m_is_running, m_has_values;
QString m_url;
double m_gain;
double m_peak;