#include <AsyncApplication.h>
Inheritance diagram for Async::Application:

This is the base class for all asynchronous applications. It is an abstract class and so it must be inherited from to create a class that can be instantiated.
Definition at line 118 of file AsyncApplication.h.
|
|
Default constructor.
|
|
|
Destructor.
|
|
|
Get the one and only application instance. Use this static member function to get the one and only instance of the application object. If an application object has not been previously created, the application will crash with a failed assertion.
|
|
|
Execute the application main loop. When this member function is called the application core will enter the core main loop. It will not exit from this loop until the Async::Application::quit method is called. Implemented in Async::CppApplication, and Async::QtApplication. |
|
|
Exit the application main loop. This function should be called to exit the application core main loop. Implemented in Async::CppApplication, and Async::QtApplication. |
|
|
Definition at line 162 of file AsyncApplication.h. |
|
|
Definition at line 160 of file AsyncApplication.h. |
|
|
Definition at line 161 of file AsyncApplication.h. |
1.4.4