#include "qtbridge.h"
#include <QCoreApplication>
#include <QNetworkAccessManager>
#include <QNetworkRequest>
#include <QNetworkReply>
#include <QThread>
#include <QDebug>
#include "qtbridge.moc"
Go to the source code of this file.
Classes | |
class | qt::core::world::detail::TaskEvent |
class | qt::core::world::detail::TaskHandler |
Namespaces | |
qt | |
qt::core | |
qt::core::world | |
qt::core::world::detail | |
Functions | |
QEvent::Type | qt::core::world::detail::qt_core_world_task_event_type () |
void | qt::core::world::detail::createCoreApplicationInstanceWithArgs (int argc, char **argv) |
void | qt::core::world::detail::destroyCoreApplicationInstace () |
QCoreApplication * | qt::core::world::detail::coreApplicationInstance () |
TaskHandler * | qt::core::world::detail::task_handler () |
void | qt::core::world::build_and_run (int argc, char **argv, const std::function< void()> &ready) |
Sets up the Qt core world and executes its event loop. Blocks until destroy() is called. More... | |
void | qt::core::world::destroy () |
Destroys the Qt core world and quits its event loop. More... | |
std::future< void > | qt::core::world::enter_with_task (const std::function< void()> &task) |
Enters the Qt core world and schedules the given task for execution. More... | |