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
333 B
21 lines
333 B
4 years ago
|
#ifndef DATACINESETTING_H
|
||
|
#define DATACINESETTING_H
|
||
|
#include <QMetaType>
|
||
|
|
||
|
typedef struct DataCineSetting_t
|
||
|
{
|
||
|
bool cineOriginalClip;
|
||
|
bool cineRepeat;
|
||
|
bool cinePlay;
|
||
|
bool freeze;
|
||
|
|
||
|
int cineStart;
|
||
|
int cineEnd;
|
||
|
int cineSpeed;
|
||
|
int cineNumber;
|
||
|
} DataCineSetting_t;
|
||
|
|
||
|
Q_DECLARE_METATYPE(DataCineSetting_t)
|
||
|
|
||
|
#endif //DATACINESETTING_H
|