mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 00:48:38 +00:00
38 lines
996 B
C++
38 lines
996 B
C++
#include <QWebEngineFindTextResult>
|
|
#include <qwebenginefindtextresult.h>
|
|
#include "gen_qwebenginefindtextresult.h"
|
|
|
|
#ifndef _Bool
|
|
#define _Bool bool
|
|
#endif
|
|
#include "_cgo_export.h"
|
|
|
|
QWebEngineFindTextResult* QWebEngineFindTextResult_new() {
|
|
return new QWebEngineFindTextResult();
|
|
}
|
|
|
|
QWebEngineFindTextResult* QWebEngineFindTextResult_new2(QWebEngineFindTextResult* other) {
|
|
return new QWebEngineFindTextResult(*other);
|
|
}
|
|
|
|
int QWebEngineFindTextResult_NumberOfMatches(const QWebEngineFindTextResult* self) {
|
|
return self->numberOfMatches();
|
|
}
|
|
|
|
int QWebEngineFindTextResult_ActiveMatch(const QWebEngineFindTextResult* self) {
|
|
return self->activeMatch();
|
|
}
|
|
|
|
void QWebEngineFindTextResult_OperatorAssign(QWebEngineFindTextResult* self, QWebEngineFindTextResult* other) {
|
|
self->operator=(*other);
|
|
}
|
|
|
|
void QWebEngineFindTextResult_Delete(QWebEngineFindTextResult* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<QWebEngineFindTextResult*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|