Skip to content
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