2024-08-25 04:08:24 +00:00
|
|
|
#ifndef GEN_QFACTORYINTERFACE_H
|
|
|
|
#define GEN_QFACTORYINTERFACE_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
class QFactoryInterface;
|
|
|
|
#else
|
|
|
|
typedef struct QFactoryInterface QFactoryInterface;
|
|
|
|
#endif
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
void QFactoryInterface_Keys(const QFactoryInterface* self, char*** _out, int** _out_Lengths, size_t* _out_len);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QFactoryInterface_Delete(QFactoryInterface* self);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|