21 lines
265 B
C
21 lines
265 B
C
|
#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 timeSpan;
|
||
|
int endTime;
|
||
|
|
||
|
QWidget* wgt = nullptr;
|
||
|
};
|
||
|
|
||
|
#endif // ELEBASE_H
|