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.
21 lines
359 B
21 lines
359 B
4 years ago
|
#ifndef HARDWAREMETADATA_H
|
||
|
#define HARDWAREMETADATA_H
|
||
|
|
||
|
#include "model/ultrasoundModule/metadata/UsBaseMetadata.h"
|
||
|
#include "model/enums/EDataType.h"
|
||
|
|
||
|
class HardwareMetadata : public UsBaseMetadata
|
||
|
{
|
||
|
public:
|
||
|
EDataType::eDataType dataType;
|
||
|
int fps;
|
||
|
|
||
|
HardwareMetadata()
|
||
|
{
|
||
|
}
|
||
|
};
|
||
|
|
||
|
Q_DECLARE_METATYPE(HardwareMetadata)
|
||
|
|
||
|
#endif //HARDWAREMETADATA_H
|