libcosmos
Linux C++ System Programming Library
|
Class based main entry point that passes no command line arguments. More...
#include <main.hxx>
Protected Member Functions | |
virtual ExitStatus | main ()=0 |
Friends | |
template<typename MAIN > | |
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.
|
friend |
C++ wrapper for the main() application entry point.
This wrapper can be used to invoke a class member function to gain a libcosmos C++ style entry point into the program along with automatic library initialization and handling of uncaught exceptions as well as ExitStatus propagation.
Use this wrapper in the actual main()
entry point of your program to instantiate the MAIN class type. This type needs to implement one of the main class interfaces MainNoArgs, MainPlainArgs or MainContainerArgs.
These classes use the cosmos::ExitStatus strong type instead of the plain int
exit code. This offers improved readability and less room for mistakes. To allow quick exit paths in the application you can throw a plain cosmos::ExitStatus, which will be catched in the wrapper and results in a regular return of the integer value from the actual main()
entry point.
Any other exceptions derived from std::exception will also be catched and lead to an output on stderr and an exit status of ExitStatus::FAILURE. This should be a last resort only, though, and you should handle non-fatal exceptions in the implementation of your program to provide context aware error messages.
Definition at line 72 of file main.hxx.