mirror of
https://github.com/mappu/miqt.git
synced 2025-01-31 18:40:21 +00:00
37 lines
906 B
C++
37 lines
906 B
C++
#include <QWebEngineFindTextResult>
|
|
#include <qwebenginefindtextresult.h>
|
|
#include "gen_qwebenginefindtextresult.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
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) {
|
|
delete self;
|
|
}
|
|
|