mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 00:48:38 +00:00
23 lines
501 B
C++
23 lines
501 B
C++
#include <qvarlengtharray.h>
|
|
#include "gen_qvarlengtharray.h"
|
|
|
|
#ifndef _Bool
|
|
#define _Bool bool
|
|
#endif
|
|
#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();
|
|
}
|
|
|