chore: update the file
Some checks failed
build-windows / Build with Qt6 (win64_mingw, 6.2.4) (push) Has been cancelled
build-windows / Build with Qt6 (win64_mingw, 6.5.3) (push) Has been cancelled
build-windows / Build with Qt6 (win64_msvc2019_64, 6.2.4) (push) Has been cancelled
build-windows / Build with Qt6 (win64_msvc2019_64, 6.5.3) (push) Has been cancelled
build-windows / Build with Qt6 (win64_msvc2022_64, 6.10.0) (push) Has been cancelled
build-windows / Build with Qt6 (win64_msvc2022_64, 6.8.3) (push) Has been cancelled
build-windows / Build with Qt6 (win64_msvc2022_64, 6.9.1) (push) Has been cancelled
build-ubuntu / Build (gcc_64, ubuntu-22.04, 6.2.4) (push) Has been cancelled
build-ubuntu / Build (gcc_64, ubuntu-22.04, 6.5.3) (push) Has been cancelled
build-ubuntu / Build (linux_gcc_64, ubuntu-22.04, 6.8.3) (push) Has been cancelled
build-ubuntu / Build (linux_gcc_64, ubuntu-22.04, 6.9.1) (push) Has been cancelled
build-qt5 / Build with Qt5(windows) (win64_msvc2017_64, 5.10.1) (push) Has been cancelled
build-qt5 / Build with Qt5(windows) (win64_msvc2017_64, 5.11.3) (push) Has been cancelled
build-qt5 / Build with Qt5(windows) (win64_msvc2017_64, 5.12.12) (push) Has been cancelled
build-qt5 / Build with Qt5(windows) (win64_msvc2017_64, 5.13.2) (push) Has been cancelled
build-qt5 / Build with Qt5(windows) (win64_msvc2017_64, 5.14.2) (push) Has been cancelled
build-qt5 / Build with Qt5(windows) (win64_msvc2017_64, 5.9.9) (push) Has been cancelled
build-qt5 / Build with Qt5(windows) (win64_msvc2019_64, 5.15.2) (push) Has been cancelled
build-qt5 / Build with Qt5(linux) (5.10.1) (push) Has been cancelled
build-qt5 / Build with Qt5(linux) (5.11.3) (push) Has been cancelled
build-qt5 / Build with Qt5(linux) (5.12.12) (push) Has been cancelled
build-qt5 / Build with Qt5(linux) (5.13.2) (push) Has been cancelled
build-qt5 / Build with Qt5(linux) (5.14.2) (push) Has been cancelled
build-qt5 / Build with Qt5(linux) (5.15.2) (push) Has been cancelled
build-qt5 / Build with Qt5(linux) (5.9.9) (push) Has been cancelled
build-qt5 / Build with Qt5(macos) (macos-14, 5.10.1) (push) Has been cancelled
build-qt5 / Build with Qt5(macos) (macos-14, 5.11.3) (push) Has been cancelled
build-qt5 / Build with Qt5(macos) (macos-14, 5.12.12) (push) Has been cancelled
build-qt5 / Build with Qt5(macos) (macos-14, 5.13.2) (push) Has been cancelled
build-qt5 / Build with Qt5(macos) (macos-14, 5.14.2) (push) Has been cancelled
build-qt5 / Build with Qt5(macos) (macos-14, 5.15.2) (push) Has been cancelled
build-qt5 / Build with Qt5(macos) (macos-14, 5.9.9) (push) Has been cancelled
build-macos / Build (macos-14, 6.2.4) (push) Has been cancelled
build-macos / Build (macos-14, 6.5.3) (push) Has been cancelled
build-macos / Build (macos-14, 6.8.3) (push) Has been cancelled
build-macos / Build (macos-14, 6.9.1) (push) Has been cancelled
build-daily / update-tag (push) Has been cancelled
build-apps / Build with Qt6 (xAssistant, win64_msvc2022_64, 6.8.3) (push) Has been cancelled
build-apps / Build with Qt6 (xCode, win64_msvc2022_64, 6.8.3) (push) Has been cancelled
build-apps / Build with Qt6 (xHash, win64_msvc2022_64, 6.8.3) (push) Has been cancelled
build-apps / Build with Qt6 (xOscilloscope, win64_msvc2022_64, 6.8.3) (push) Has been cancelled
build-apps / Build with Qt6 (xPing, win64_msvc2022_64, 6.8.3) (push) Has been cancelled
build-android / Build for Android(docker) (push) Has been cancelled
build-android / Build for Android(windows) (windows-2022, 6.8.3) (push) Has been cancelled
build-daily / update-release (push) Has been cancelled
build-daily / release-for-windows (push) Has been cancelled
build-daily / release-for-windows7 (push) Has been cancelled
build-daily / release-for-linux (push) Has been cancelled
build-daily / release-for-macos (push) Has been cancelled
build-daily / release-for-android (push) Has been cancelled

This commit is contained in:
x-tools-author 2025-09-14 21:20:03 +08:00
parent 4b8409ce7a
commit 393da176ca
4 changed files with 78 additions and 0 deletions

View File

@ -0,0 +1,17 @@
/***************************************************************************************************
* Copyright 2025-2025 x-tools-author(x-tools@outlook.com). All rights reserved.
*
* The file is encoded using "utf8 with bom", it is a part of eTools project.
*
* eTools is licensed according to the terms in the file LICENCE(GPL V3) in the root of the source
* code directory.
**************************************************************************************************/
#include "scriptrunnerjs.h"
ScriptRunnerJs::ScriptRunnerJs(QObject *parent)
: ScriptRunner(parent)
{}
ScriptRunnerJs::~ScriptRunnerJs() {}
void ScriptRunnerJs::run() {}

View File

@ -0,0 +1,22 @@
/***************************************************************************************************
* Copyright 2025-2025 x-tools-author(x-tools@outlook.com). All rights reserved.
*
* The file is encoded using "utf8 with bom", it is a part of eTools project.
*
* eTools is licensed according to the terms in the file LICENCE(GPL V3) in the root of the source
* code directory.
**************************************************************************************************/
#pragma once
#include "scriptrunner.h"
class ScriptRunnerJs : public ScriptRunner
{
Q_OBJECT
public:
explicit ScriptRunnerJs(QObject *parent = nullptr);
~ScriptRunnerJs();
protected:
void run() override;
};

View File

@ -0,0 +1,17 @@
/***************************************************************************************************
* Copyright 2025-2025 x-tools-author(x-tools@outlook.com). All rights reserved.
*
* The file is encoded using "utf8 with bom", it is a part of eTools project.
*
* eTools is licensed according to the terms in the file LICENCE(GPL V3) in the root of the source
* code directory.
**************************************************************************************************/
#include "scriptrunnerlua.h"
ScriptRunnerLua::ScriptRunnerLua(QObject *parent)
: ScriptRunner(parent)
{}
ScriptRunnerLua::~ScriptRunnerLua() {}
void ScriptRunnerLua::run() {}

View File

@ -0,0 +1,22 @@
/***************************************************************************************************
* Copyright 2025-2025 x-tools-author(x-tools@outlook.com). All rights reserved.
*
* The file is encoded using "utf8 with bom", it is a part of eTools project.
*
* eTools is licensed according to the terms in the file LICENCE(GPL V3) in the root of the source
* code directory.
**************************************************************************************************/
#pragma once
#include "scriptrunner.h"
class ScriptRunnerLua : public ScriptRunner
{
Q_OBJECT
public:
explicit ScriptRunnerLua(QObject *parent = nullptr);
~ScriptRunnerLua();
protected:
void run() override;
};