#pragma once #ifndef MIQT_QT6_GEN_QRUNNABLE_H #define MIQT_QT6_GEN_QRUNNABLE_H #include #include #include #pragma GCC diagnostic ignored "-Wdeprecated-declarations" #include "../libmiqt/libmiqt.h" #ifdef __cplusplus extern "C" { #endif #ifdef __cplusplus class QRunnable; #else typedef struct QRunnable QRunnable; #endif QRunnable* QRunnable_new(); void QRunnable_Run(QRunnable* self); bool QRunnable_AutoDelete(const QRunnable* self); void QRunnable_SetAutoDelete(QRunnable* self, bool autoDelete); void QRunnable_override_virtual_Run(void* self, intptr_t slot); void QRunnable_virtualbase_Run(void* self); void QRunnable_Delete(QRunnable* self, bool isSubclass); #ifdef __cplusplus } /* extern C */ #endif #endif