qamqp/src/main.cpp

13 lines
169 B
C++
Raw Normal View History

#include <QtCore/QCoreApplication>
#include "test.h"
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
Test test;
return a.exec();
}