qt/LedOK/player/elebase.h

21 lines
277 B
C
Raw Normal View History

2023-04-18 14:14:46 +08:00
#ifndef ELEBASE_H
#define ELEBASE_H
#include <QWidget>
class EleBase {
public:
QString id;
QString type;
int x;
int y;
int w;
int h;
int startTime;
int endTime;
bool repeat;
QWidget *wgt{0};
};
#endif // ELEBASE_H