A class to represent the application. More...
#include <claw/arguments_table.hpp>
Go to the source code of this file.
Classes | |
class | claw::application |
A class to represent the application. More... | |
Namespaces | |
namespace | claw |
This is the main namespace. | |
Defines | |
#define | CLAW_APPLICATION_IMPLEMENT(App) |
Use this macro to implement your application's class. If you want to implement your application class named my_app, write somewhere in your code (no semi column at the end of the line) : CLAW_APPLICATION_IMPLEMENT(my_app) . |
A class to represent the application.
Definition in file application.hpp.
#define CLAW_APPLICATION_IMPLEMENT | ( | App | ) |
int main(int argc, char** argv) \ { \ App app(argc, argv); \ return app.run(); \ } \
Use this macro to implement your application's class. If you want to implement your application class named my_app, write somewhere in your code (no semi column at the end of the line) : CLAW_APPLICATION_IMPLEMENT(my_app)
.
Definition at line 42 of file application.hpp.