Schim
device.h
1 #ifndef DEVICE_H
2 #define DEVICE_H
3 
4 #include <QList>
5 #include <QMap>
6 
7 class Component;
8 
9 class Device
10 {
11 public:
12  Device();
13 
14 private:
15  QList<Component*> components{};
16 };
17 
18 #endif // DEVICE_H
Definition: device.h:9
Model of an electrical component.
Definition: component.h:16