2024-10-20 05:21:03 +00:00
|
|
|
#include <qvarlengtharray.h>
|
|
|
|
#include "gen_qvarlengtharray.h"
|
2024-12-11 06:55:47 +00:00
|
|
|
|
|
|
|
#ifndef _Bool
|
|
|
|
#define _Bool bool
|
|
|
|
#endif
|
2024-10-20 05:21:03 +00:00
|
|
|
#include "_cgo_export.h"
|
|
|
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|