OpenHantek
mathchannel.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 
3 #pragma once
4 
5 #include "dsosamples.h"
6 #include "scopesettings.h"
7 
8 class MathChannel {
9  public:
10  explicit MathChannel( const DsoSettingsScope *scope );
11  void calculate( DSOsamples &result );
12 
13  private:
15 };
Definition: mathchannel.h:8
Definition: dsosamples.h:11
const DsoSettingsScope * scope
Definition: mathchannel.h:14
void calculate(DSOsamples &result)
Definition: mathchannel.cpp:18
Holds the settings for the oscilloscope.
Definition: scopesettings.h:100
MathChannel(const DsoSettingsScope *scope)
Definition: mathchannel.cpp:12