From b95e5fb18beb491c000376496c688837a8426851 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Tue, 10 Oct 2023 17:37:52 +0200 Subject: [PATCH] getting and setting pid for grouping meshes CURA-9755 --- conanfile.py | 2 +- python/SceneNode.sip | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index 590696b..5510d4b 100644 --- a/conanfile.py +++ b/conanfile.py @@ -66,7 +66,7 @@ def export_sources(self): copy(self, "*", path.join(self.recipe_folder, "python"), path.join(self.export_sources_folder, "python")) def requirements(self): - self.requires("savitar/(latest)@ultimaker/testing") + self.requires("savitar/(latest)@ultimaker/cura_9755") self.requires("cpython/3.10.4") def validate(self): diff --git a/python/SceneNode.sip b/python/SceneNode.sip index c5c3555..2a478fa 100644 --- a/python/SceneNode.sip +++ b/python/SceneNode.sip @@ -23,6 +23,9 @@ public: std::string getId(); void setId(std::string id); + std::pair getPidPindex(); + void setPidPindex(std::string pid, std::string pindex); + const std::map& getSettings() const; void setSetting(const std::string& key, MetadataEntry& entry); void setSetting(const std::string& key, const std::string& value);