1/*
2 * Copyright 2008, François Revol, <revol@free.fr>. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
5
6
7#include "LoginApp.h"
8
9int main(int , char **)
10{
11	LoginApp app;
12	app.Run();
13
14	return 0;
15}
16