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