qamqp/tutorials/rpc/rpc_server/main.cpp

10 lines
173 B
C++

#include <QCoreApplication>
#include <QDebug>
int main(int argc, char **argv)
{
QCoreApplication app(argc, argv);
qDebug() << "testing";
return EXIT_SUCCESS;
}