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);