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.
 
 

20 lines
394 B

#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