mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
37 lines
638 B
C++
37 lines
638 B
C++
#include "qfloat16.h"
|
|
#include "gen_qfloat16.h"
|
|
#include "_cgo_export.h"
|
|
|
|
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) {
|
|
delete self;
|
|
}
|
|
|