forked from GerhardHoffmann/DCLibraries
10 lines
152 B
C++
10 lines
152 B
C++
|
#include <QCoreApplication>
|
||
|
#include "tslib.h"
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
QCoreApplication a(argc, argv);
|
||
|
|
||
|
return a.exec();
|
||
|
}
|