xtd 0.2.0
Loading...
Searching...
No Matches
startup.cpp

Shows how to use xtd::startup class.

#pragma region xtd generated code
// This code was generated by CMake script.
//
// Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
#include "../src/game_of_life.h"
#include <xtd/startup>
auto main(int argc, char* argv[])->int {
return xtd::startup::safe_run(game_of_life::form_game_of_life::main, argc, argv);
}
#pragma endregion
static int safe_run(main_function_t main_function)
Safely call the specified application's main entry point.
Definition startup.h:47