Files
OrcaSlicer/src/slic3r/Utils/InstanceID.hpp
SoftFever f020480900 Revamp OrcaSlicer updater (#10884)
* Revamp OrcaSlicer updater
2025-09-28 10:33:33 +08:00

21 lines
337 B
C++

#pragma once
#include <string>
namespace Slic3r {
class AppConfig;
namespace instance_id {
// Returns the canonical IID, generating and storing one when missing.
std::string ensure(AppConfig& config);
// Clears the cached IID (primarily for tests).
void reset_cache_for_tests();
} // namespace instance_id
} // namespace Slic3r