smsub/main.cpp

9 lines
132 B
C++

#include <QCoreApplication>
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
return a.exec();
}