mirror of
https://github.com/Show-maket/IR-protocol.git
synced 2026-04-28 03:08:08 +00:00
25 lines
572 B
C++
25 lines
572 B
C++
#ifndef PULSELENGTHSTAT_ANALYZER_SETTINGS
|
|
#define PULSELENGTHSTAT_ANALYZER_SETTINGS
|
|
|
|
#include <AnalyzerSettings.h>
|
|
#include <AnalyzerTypes.h>
|
|
|
|
class PulseLengthStatAnalyzerSettings : public AnalyzerSettings
|
|
{
|
|
public:
|
|
PulseLengthStatAnalyzerSettings();
|
|
virtual ~PulseLengthStatAnalyzerSettings();
|
|
|
|
virtual bool SetSettingsFromInterfaces();
|
|
void UpdateInterfacesFromSettings();
|
|
virtual void LoadSettings(const char* settings);
|
|
virtual const char* SaveSettings();
|
|
|
|
Channel mInputChannel;
|
|
|
|
protected:
|
|
AnalyzerSettingInterfaceChannel mInputChannelInterface;
|
|
};
|
|
|
|
#endif
|