OpenHantek
mathchannelgenerator.h
Go to the documentation of this file.
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:
14  virtual ~MathChannelGenerator();
15  void process(PPresult *) override;
16 private:
17  const unsigned physicalChannels;
19 };
const DsoSettingsScope * scope
Definition: mathchannelgenerator.h:18
virtual ~MathChannelGenerator()
Definition: mathchannelgenerator.cpp:12
Definition: mathchannelgenerator.h:10
void process(PPresult *) override
Definition: mathchannelgenerator.cpp:15
MathChannelGenerator(const DsoSettingsScope *scope, unsigned physicalChannels)
Definition: mathchannelgenerator.cpp:8
const unsigned physicalChannels
Definition: mathchannelgenerator.h:17
Definition: processor.h:7
Holds the settings for the oscilloscope.
Definition: scopesettings.h:75
Post processing results.
Definition: ppresult.h:36