We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d8209c commit 257a083Copy full SHA for 257a083
aaf/component/OperationGroup.pyx
@@ -79,6 +79,9 @@ cdef class OperationGroup(Segment):
79
def insert(self, lib.aafUInt32 index, Segment seg not None):
80
error_check(self.ptr.InsertInputSegmentAt(index, seg.seg_ptr))
81
82
+ def remove(self, lib.aafUInt32 index):
83
+ error_check(self.ptr.RemoveInputSegmentAt(index))
84
+
85
def operationdef(self):
86
cdef OperationDef op_def = OperationDef.__new__(OperationDef)
87
error_check(self.ptr.GetOperationDefinition(&op_def.ptr))
0 commit comments