OpenHantek
mathchannelgenerator.h
1 // SPDX-License-Identifier: GPL-2.0+
2 
3 #pragma once
4 
5 #include "processor.h"
6 
7 struct DsoSettingsScope;
8 class PPresult;
9 
11 {
12 public:
13  MathChannelGenerator(const DsoSettingsScope *scope, unsigned physicalChannels);
14  virtual ~MathChannelGenerator();
15  virtual void process(PPresult *) override;
16 private:
17  const unsigned physicalChannels;
18  const DsoSettingsScope *scope;
19 };
Definition: mathchannelgenerator.h:10
Definition: processor.h:5
Holds the settings for the oscilloscope.
Definition: scopesettings.h:77
Post processing results.
Definition: ppresult.h:31