#include <QtGui>
#include "settings.h"
#include "wizard.h"
#include "tcpclient.h"

int main(int argc, char *argv[])
{	
	//QApplication object
	QApplication app(argc, argv);

	//Create setting object
	//Settings settings;
	TcpClient test;
	
	//Check if it the first run, when yes run the wizard
	//if(!settings.checkSettings())
	//{
		//settings.setDefault();
		//Wizard wizard;
		//wizard.show();
	//}

	return app.exec();
}