23 lines
477 B
C++
23 lines
477 B
C++
/*
|
|
* =====================================================================================
|
|
*
|
|
* Filename: main.cpp
|
|
*
|
|
* Description:
|
|
*
|
|
* Created: 13/12/2014 20:49:00
|
|
*
|
|
* Author: Quentin Bazin, <quent42340@gmail.com>
|
|
*
|
|
* =====================================================================================
|
|
*/
|
|
#include "ClientApplication.hpp"
|
|
|
|
int main(int argc, char **argv) {
|
|
ClientApplication app(argc, argv);
|
|
app.run();
|
|
|
|
return 0;
|
|
}
|
|
|