Skip to content

Commit 257a083

Browse files
committed
added remove method
1 parent 7d8209c commit 257a083

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

aaf/component/OperationGroup.pyx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,9 @@ cdef class OperationGroup(Segment):
7979
def insert(self, lib.aafUInt32 index, Segment seg not None):
8080
error_check(self.ptr.InsertInputSegmentAt(index, seg.seg_ptr))
8181

82+
def remove(self, lib.aafUInt32 index):
83+
error_check(self.ptr.RemoveInputSegmentAt(index))
84+
8285
def operationdef(self):
8386
cdef OperationDef op_def = OperationDef.__new__(OperationDef)
8487
error_check(self.ptr.GetOperationDefinition(&op_def.ptr))

0 commit comments

Comments
 (0)