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
|
|
|
|
|
|
|
ptrdiff_t QVLABaseBase_Capacity(const QVLABaseBase* self) {
|
|
|
|
QVLABaseBase::size_type _ret = self->capacity();
|
|
|
|
return static_cast<ptrdiff_t>(_ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
ptrdiff_t QVLABaseBase_Size(const QVLABaseBase* self) {
|
|
|
|
QVLABaseBase::size_type _ret = self->size();
|
|
|
|
return static_cast<ptrdiff_t>(_ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QVLABaseBase_Empty(const QVLABaseBase* self) {
|
|
|
|
return self->empty();
|
|
|
|
}
|
|
|
|
|