OpenHantek
modelDSO2250.h
1 #pragma once
2 
3 #include "dsomodel.h"
4 
5 class HantekDsoControl;
6 using namespace Hantek;
7 
8 struct ModelDSO2250 : public DSOModel {
9  static const int ID = 0x2250;
10  ModelDSO2250();
11  void applyRequirements(HantekDsoControl* dsoControl) const override;
12 };
Definition: controlsettings.h:8
Definition: modelDSO2250.h:8
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:30