miqt/qt/gen_qfloat16.cpp

37 lines
638 B
C++
Raw Permalink Normal View History

#include <qfloat16.h>
2024-08-29 07:01:51 +00:00
#include "gen_qfloat16.h"
#include "_cgo_export.h"
2024-08-29 07:01:51 +00:00
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();
2024-08-29 07:01:51 +00:00
}
bool qfloat16_IsNaN(const qfloat16* self) {
return self->isNaN();
2024-08-29 07:01:51 +00:00
}
bool qfloat16_IsFinite(const qfloat16* self) {
return self->isFinite();
2024-08-29 07:01:51 +00:00
}
int qfloat16_FpClassify(const qfloat16* self) {
return self->fpClassify();
2024-08-29 07:01:51 +00:00
}
bool qfloat16_IsNormal(const qfloat16* self) {
return self->isNormal();
2024-08-29 07:01:51 +00:00
}
void qfloat16_Delete(qfloat16* self) {
delete self;
}