mirror of
https://gitlab.com/eql/EQL5.git
synced 2025-12-25 03:11:44 -08:00
12 lines
357 B
C
12 lines
357 B
C
// THIS FILE IS GENERATED (see "invokables.lisp" in sources)
|
|
|
|
Q_INVOKABLE void clearCache() {
|
|
eql_fun("browser:clear-cache"); }
|
|
|
|
Q_INVOKABLE bool run(const QString& x1, const QStringList& x2) {
|
|
QVariant ret =
|
|
eql_fun("browser:run", QVariant::Bool,
|
|
Q_ARG(QString, x1),
|
|
Q_ARG(QStringList, x2));
|
|
return ret.toBool(); }
|
|
|