Skip to content

Commit

Permalink
getting and setting pid for grouping meshes
Browse files Browse the repository at this point in the history
CURA-9755
  • Loading branch information
saumyaj3 committed Oct 10, 2023
1 parent 38e64bb commit b95e5fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
3 changes: 3 additions & 0 deletions python/SceneNode.sip
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ public:
std::string getId();
void setId(std::string id);

std::pair<std::string, std::string> getPidPindex();
void setPidPindex(std::string pid, std::string pindex);

const std::map<std::string, MetadataEntry>& getSettings() const;
void setSetting(const std::string& key, MetadataEntry& entry);
void setSetting(const std::string& key, const std::string& value);
Expand Down

0 comments on commit b95e5fb

Please sign in to comment.