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