Schim
schim
src
model
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
Device
Definition:
device.h:9
Component
Model of an electrical component.
Definition:
component.h:16
Generated by
1.8.13