You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
310 B
19 lines
310 B
#ifndef PROBECONNECTEDPROBES_H
|
|
#define PROBECONNECTEDPROBES_H
|
|
|
|
#include <QObject>
|
|
#include "model/ssm/dtoInternal/SsmConnectedProbe.h"
|
|
|
|
struct ProbeConnectedProbes
|
|
{
|
|
quint32 id;
|
|
quint32 slot;
|
|
|
|
void init(SsmConnectedProbe_t temp)
|
|
{
|
|
id = temp.id;
|
|
slot = temp.slot;
|
|
}
|
|
};
|
|
|
|
#endif //PROBECONNECTEDPROBES_H
|
|
|