mirror of
https://gitlab.com/eql/EQL5.git
synced 2025-12-06 10:31:19 -08:00
19 lines
271 B
C++
19 lines
271 B
C++
#include "lib.h"
|
|
#include "trafficlight.h"
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
QObject* ini()
|
|
{
|
|
static QWidget* widget = 0;
|
|
|
|
if(!widget) {
|
|
widget = new TrafficLight;
|
|
widget->resize(110, 300);
|
|
widget->show();
|
|
}
|
|
|
|
return widget;
|
|
}
|
|
|
|
QT_END_NAMESPACE
|