summaryrefslogtreecommitdiff
path: root/main.cpp
blob: d1e019458fb7d299c62ceda3c3cc812d76f07412 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <QtCore/QCoreApplication>

#include "bluetoothgpsserver.h"

int main(int argc, char *argv[])
{
	QCoreApplication app(argc, argv);
	QScopedPointer<BluetoothGpsServer> server(new BluetoothGpsServer(0));

	server->start();

	return app.exec();
}