update slic3r

This commit is contained in:
QIDI TECH
2025-08-04 16:30:53 +08:00
parent 8d4d60ec48
commit 661b112a68
287 changed files with 22250 additions and 7322 deletions

View File

@@ -0,0 +1,23 @@
#pragma once
#include "nlohmann/json.hpp"
namespace Slic3r
{
class QDTCrossTalk
{
public:
QDTCrossTalk() = delete;
~QDTCrossTalk() = delete;
public:
static std::string Crosstalk_DevId(const std::string& str);
static std::string Crosstalk_DevIP(const std::string& str);
static std::string Crosstalk_DevName(const std::string& str);
static std::string Crosstalk_JsonLog(const nlohmann::json& json);
private:
static std::string Crosstalk_ChannelName(const std::string& str);
};
} // namespace Slic3r