summaryrefslogtreecommitdiffstats
path: root/main.cpp
blob: 4167e144664b1d1d5f61d663086dde2009222ed8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <QApplication>
#include <QHostAddress>

#include "MessageForm.h"
#include "MessageListener.h"

int main(int argc, char *argv[])
{
	QApplication app(argc, argv);
	
	MessageForm a;
	a.show();
	
	return app.exec();
}