2024-10-20 18:21:03 +13:00
|
|
|
#include <qvarlengtharray.h>
|
|
|
|
#include "gen_qvarlengtharray.h"
|
2024-12-11 19:55:47 +13:00
|
|
|
|
2025-01-07 11:30:33 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
2024-12-11 19:55:47 +13:00
|
|
|
#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();
|
|
|
|
}
|
|
|
|
|