ewol/Sources/Main.cpp

49 lines
962 B
C++
Raw Normal View History

/**
*******************************************************************************
* @file Main.cpp
* @brief main fonction
* @author Edouard DUPIN
* @date 13/10/2011
* @par Project
2011-10-17 18:05:15 +02:00
* ewol
*
* @par Copyright
* Copyright 2011 Edouard DUPIN, all right reserved
*
* This software is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY.
*
* Licence summary :
* You can modify and redistribute the sources code and binaries.
* You can send me the bug-fix
*
* Term of the licence in in the file licence.txt.
*
*******************************************************************************
*/
2011-10-17 18:05:15 +02:00
#include "ewol.h"
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
/**
* @brief main input fonction
*/
int main(int argc, char *argv[])
{
2011-10-17 18:05:15 +02:00
ewol::Init(argc, argv);
// create the windows
//ewol::Windows myWindows(ewol::WINDOWS_MAIN);
ewol::Run();
ewol::UnInit();
return 0;
}