mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-10-12 17:00:04 +02:00
Changed project structure
This commit is contained in:
16
decoder_modules/weather_sat_decoder/src/sat_decoder.h
Normal file
16
decoder_modules/weather_sat_decoder/src/sat_decoder.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#pragma once
|
||||
#include <string>
|
||||
#include <signal_path/vfo_manager.h>
|
||||
|
||||
class SatDecoder {
|
||||
public:
|
||||
virtual void select() = 0;
|
||||
virtual void start() = 0;
|
||||
virtual void stop() = 0;
|
||||
virtual void setVFO(VFOManager::VFO* vfo) = 0;
|
||||
virtual bool canRecord() = 0;
|
||||
virtual bool startRecording(std::string recPath) { return false; };
|
||||
virtual void stopRecording() { };
|
||||
virtual bool isRecording() { return false; };
|
||||
virtual void drawMenu(float menuWidth) = 0;
|
||||
};
|
Reference in New Issue
Block a user