Async
0.18.0
|
An application class for writing non GUI applications. More...
#include <AsyncCppApplication.h>
An application class for writing non GUI applications.
Async::CppApplication::CppApplication | ( | void | ) |
Constructor.
Async::CppApplication::~CppApplication | ( | void | ) |
Destructor.
void Async::CppApplication::exec | ( | void | ) | [virtual] |
Execute the application main loop.
When this member function is called the application core will enter the main loop. It will not exit from this loop until the Async::Application::quit method is called.
Implements Async::Application.
void Async::CppApplication::quit | ( | void | ) | [virtual] |
Exit the application main loop.
This function should be called to exit the application core main loop.
Implements Async::Application.