mirror of
https://github.com/caperren/school_archives.git
synced 2025-11-09 13:41:13 +00:00
17 lines
269 B
C++
17 lines
269 B
C++
#include <QtGui/QApplication>
|
|
#include <QtCore>
|
|
#include <string>
|
|
#include "qextserialport.h"
|
|
#include "varclass.h"
|
|
#include "leddisplay.h"
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
leddisplay w;
|
|
w.show();
|
|
|
|
return a.exec();
|
|
}
|