miqt/qt6/gen_qvarlengtharray.cpp

26 lines
519 B
C++
Raw Normal View History

2024-10-20 18:21:03 +13:00
#include <qvarlengtharray.h>
#include "gen_qvarlengtharray.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
ptrdiff_t QVLABaseBase_capacity(const QVLABaseBase* self) {
2024-10-20 18:21:03 +13:00
QVLABaseBase::size_type _ret = self->capacity();
return static_cast<ptrdiff_t>(_ret);
}
2025-02-01 13:45:16 +13:00
ptrdiff_t QVLABaseBase_size(const QVLABaseBase* self) {
2024-10-20 18:21:03 +13:00
QVLABaseBase::size_type _ret = self->size();
return static_cast<ptrdiff_t>(_ret);
}
2025-02-01 13:45:16 +13:00
bool QVLABaseBase_empty(const QVLABaseBase* self) {
2024-10-20 18:21:03 +13:00
return self->empty();
}