mirror of
https://github.com/x-tools-author/x-tools.git
synced 2025-09-15 15:28:40 +08:00
chore: update the file
This commit is contained in:
parent
c5005f6fb6
commit
54ec544af2
@ -25,10 +25,13 @@
|
||||
|
||||
#include "common/crc.h"
|
||||
#include "common/xtools.h"
|
||||
#include "device/utilities/blescanner.h"
|
||||
#include "device/utilities/ipscanner.h"
|
||||
#include "device/utilities/serialportscanner.h"
|
||||
|
||||
#ifdef X_ENABLE_BLUETOOTH
|
||||
#include "device/utilities/blescanner.h"
|
||||
#endif
|
||||
|
||||
#include "settings.h"
|
||||
#include "xdebug.h"
|
||||
|
||||
@ -53,8 +56,10 @@ int main(int argc, char *argv[])
|
||||
qmlRegisterType<TcpClient>("xTools.xDebug", 1, 0, "TcpClient");
|
||||
qmlRegisterType<TcpServer>("xTools.xDebug", 1, 0, "TcpServer");
|
||||
qmlRegisterType<IpScanner>("xTools.xDebug", 1, 0, "IpScanner");
|
||||
#ifdef X_ENABLE_BLUETOOTH
|
||||
qmlRegisterType<BleScanner>("xTools.xDebug", 1, 0, "BleScanner");
|
||||
qmlRegisterType<BleCentral>("xTools.xDebug", 1, 0, "BleCentral");
|
||||
#endif
|
||||
qmlRegisterType<SerialPort>("xTools.xDebug", 1, 0, "Serialport");
|
||||
qmlRegisterType<WebSocketServer>("xTools.xDebug", 1, 0, "WebSocketServer");
|
||||
qmlRegisterType<WebSocketClient>("xTools.xDebug", 1, 0, "WebSocketClient");
|
||||
|
||||
Loading…
Reference in New Issue
Block a user