Skip to content

IECore/TypeIds.h : Reserve new Id range for Gaffer 1.6 #1469

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 27, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions include/IECore/TypeIds.h
Original file line number Diff line number Diff line change
Expand Up @@ -285,8 +285,8 @@ enum TypeId
FirstCoreMayaTypeId = 109000,
LastCoreMayaTypeId = 109999,

FirstGafferTypeId = 110000,
LastGafferTypeId = 110999,
OldFirstGafferTypeId = 110000, // Used by Gaffer 1.5 and earlier
OldLastGafferTypeId = 110999,

FirstCoreHoudiniTypeId = 111000,
LastCoreHoudiniTypeId = 111999,
Expand All @@ -309,6 +309,9 @@ enum TypeId
FirstCoreVDBTypeId = 117000,
LastCoreVDBTypeId = 117999,

FirstGafferTypeId = 118000, // Used by Gaffer 1.6 and later
LastGafferTypeId = 127999,

// TypeIds dynamically allocated by registerRunTimeTyped (IECore Python)
FirstDynamicTypeId = 300000,
LastDynamicTypeId = 399999,
Expand Down
Loading