mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 17:08:38 +00:00
19 lines
460 B
C++
19 lines
460 B
C++
#include <qvarlengtharray.h>
|
|
#include "gen_qvarlengtharray.h"
|
|
#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();
|
|
}
|
|
|