miqt/qt/gen_qfloat16.cpp
Jacek Sieka a0c6344ecd Avoid dependency on exported go header
The expected type of the callback is already known from the AST - this
change reduces dependency on cgo specifics and makes the generated C ABI
entirely cgo-independent - in particular, there is no need to include
`_cgo_export.h` any more.
2025-01-07 12:55:40 +01:00

48 lines
789 B
C++

#include <qfloat16.h>
#include "gen_qfloat16.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
} /* extern C */
#endif
qfloat16* qfloat16_new() {
return new qfloat16();
}
qfloat16* qfloat16_new2(float f) {
return new qfloat16(static_cast<float>(f));
}
bool qfloat16_IsInf(const qfloat16* self) {
return self->isInf();
}
bool qfloat16_IsNaN(const qfloat16* self) {
return self->isNaN();
}
bool qfloat16_IsFinite(const qfloat16* self) {
return self->isFinite();
}
int qfloat16_FpClassify(const qfloat16* self) {
return self->fpClassify();
}
bool qfloat16_IsNormal(const qfloat16* self) {
return self->isNormal();
}
void qfloat16_Delete(qfloat16* self, bool isSubclass) {
if (isSubclass) {
delete dynamic_cast<qfloat16*>( self );
} else {
delete self;
}
}