72int main(
const int argc,
const char **argv) {
80 if constexpr (std::is_base_of_v<MainNoArgs, MAIN>) {
81 status =
static_cast<MainNoArgs&
>(instance).main();
82 }
else if constexpr (std::is_base_of_v<MainPlainArgs, MAIN>) {
83 status =
static_cast<MainPlainArgs&
>(instance).main(argc, argv);
84 }
else if constexpr (std::is_base_of_v<MainContainerArgs, MAIN>) {
86 std::string_view{argv[0]},
94 static_assert(
sizeof(MAIN) == 0,
"MAIN type does not implement a main function interface");
97 return to_integral(status);
99 return to_integral(status);
100 }
catch (
const std::exception &ex) {
101 std::cerr <<
"Unhandled exception: " << ex.what() << std::endl;
102 return to_integral(ExitStatus::FAILURE);
104 }
catch (
const std::exception &ex) {
107 std::cerr <<
"Error starting program: " << ex.what() << std::endl;
108 return to_integral(ExitStatus::FAILURE);
Class based main() entry point that passes STL style command line arguments.
friend int main(const int argc, const char **argv)
C++ wrapper for the main() application entry point.
Class based main entry point that passes no command line arguments.
Class based entry point that passes C-style command line arguments.
friend int main(const int argc, const char **argv)
C++ wrapper for the main() application entry point.