mercenary/testapp/main.cpp

9 lines
157 B
C++
Raw Permalink Normal View History

#include <iostream>
#include <QCoreApplication>
#include "testapp.h"
int main( int argc, char *argv[] ) {
TestApp app( argc, argv );
return app.exec();
}