|
Async
0.18.0
|
An application class for writing non GUI applications. More...
#include <AsyncCppApplication.h>
Public Member Functions | |
| CppApplication (void) | |
| Constructor. More... | |
| ~CppApplication (void) | |
| Destructor. More... | |
| void | exec (void) |
| Execute the application main loop. More... | |
| void | quit (void) |
| Exit the application main loop. More... | |
Public Member Functions inherited from Async::Application | |
| Application (void) | |
| Default constructor. More... | |
| virtual | ~Application (void) |
| Destructor. More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from Async::Application | |
| static Application & | app (void) |
| Get the one and only application instance. More... | |
An application class for writing non GUI applications.
Definition at line 135 of file AsyncCppApplication.h.
| Async::CppApplication::CppApplication | ( | void | ) |
Constructor.
| Async::CppApplication::~CppApplication | ( | void | ) |
Destructor.
|
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.
|
virtual |
Exit the application main loop.
This function should be called to exit the application core main loop.
Implements Async::Application.
1.8.3.1