OpenHantek
Loading...
Searching...
No Matches
modelregistry.h
1
2// SPDX-License-Identifier: GPL-2.0+
3
4#pragma once
5
6#include "dsomodel.h"
7
9public:
10 static ModelRegistry *get();
11 void add(DSOModel* model);
12 const std::list<DSOModel*> models() const;
13private:
14 std::list<DSOModel*> supportedModels;
15};
Describes a device This is the central class to describe a hantek compatible DSO. It contains all usb...
Definition dsomodel.h:17
Definition modelregistry.h:8