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
394 B
21 lines
394 B
|
5 years ago
|
#ifndef PLAYERMEATADATA_H
|
||
|
|
#define PLAYERMEATADATA_H
|
||
|
|
|
||
|
|
#include <QObject>
|
||
|
|
#include "model/ultrasoundModule/metadata/UsBaseMetadata.h"
|
||
|
|
|
||
|
|
class PlayerMetadata : public UsBaseMetadata
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
PlayerMetadata();
|
||
|
|
int currentScond = 0;
|
||
|
|
int currentIndex = 0;
|
||
|
|
int start = 0;
|
||
|
|
int end = 0;
|
||
|
|
bool orginalClip = true;
|
||
|
|
};
|
||
|
|
|
||
|
|
Q_DECLARE_METATYPE(PlayerMetadata)
|
||
|
|
|
||
|
|
#endif //PLAYERMEATADATA_H
|