miqt/qt6/gen_qbindingstorage.cpp

39 lines
750 B
C++
Raw Normal View History

2024-10-20 18:21:03 +13:00
#include <QBindingStatus>
#include <QBindingStorage>
#include <QUntypedPropertyData>
#include <qbindingstorage.h>
#include "gen_qbindingstorage.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
} /* extern C */
#endif
2024-10-20 18:21:03 +13:00
2025-02-01 13:45:16 +13:00
void QBindingStatus_delete(QBindingStatus* self) {
delete self;
2024-10-20 18:21:03 +13:00
}
2024-12-07 17:15:57 +13:00
QBindingStorage* QBindingStorage_new() {
return new QBindingStorage();
2024-10-20 18:21:03 +13:00
}
2025-02-01 13:45:16 +13:00
bool QBindingStorage_isEmpty(QBindingStorage* self) {
2024-10-20 18:21:03 +13:00
return self->isEmpty();
}
2025-02-01 13:45:16 +13:00
bool QBindingStorage_isValid(const QBindingStorage* self) {
2024-10-20 18:21:03 +13:00
return self->isValid();
}
2025-02-01 13:45:16 +13:00
void QBindingStorage_registerDependency(const QBindingStorage* self, QUntypedPropertyData* data) {
2024-10-20 18:21:03 +13:00
self->registerDependency(data);
}
2025-02-01 13:45:16 +13:00
void QBindingStorage_delete(QBindingStorage* self) {
delete self;
2024-10-20 18:21:03 +13:00
}