OpenHantek
modelDEMO.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: GPL-2.0+
2 
3 #pragma once
4 
5 #include "dsomodel.h"
6 
7 class HantekDsoControl;
8 using namespace Hantek;
9 
10 const int DemoDeviceID = 0xDEDE;
11 
12 struct ModelDEMO : public DSOModel {
13  static const int ID = DemoDeviceID;
14  ModelDEMO();
15  void applyRequirements( HantekDsoControl *dsoControl ) const override;
16 };
Definition: modelDEMO.h:12
Definition: controlsettings.h:9
const int DemoDeviceID
Definition: modelDEMO.h:10
Describes a device This is the central class to describe a hantek compatible DSO. It contains all usb...
Definition: dsomodel.h:17
The DsoControl abstraction layer for Hantek USB DSOs. TODO Please anyone, refactor this class into sm...
Definition: hantekdsocontrol.h:53