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.
16 lines
348 B
16 lines
348 B
4 years ago
|
#ifndef CINEDISPLAYPARAMETERS_H
|
||
|
#define CINEDISPLAYPARAMETERS_H
|
||
|
|
||
|
#include <QMetaType>
|
||
|
|
||
|
typedef struct CineDisplayParameters_t {
|
||
|
int maxSecondCapacity = 0;
|
||
|
int currentSecound = 0;
|
||
|
int currentIndex = 0;
|
||
|
int maxFrameCapacity = 0;
|
||
|
}CineDisplayParameters_t;
|
||
|
|
||
|
Q_DECLARE_METATYPE(CineDisplayParameters_t)
|
||
|
|
||
|
#endif //CINEDISPLAYPARAMETERS_H
|