diff options
Diffstat (limited to 'simpl/peak_detection.pyx')
-rw-r--r-- | simpl/peak_detection.pyx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/simpl/peak_detection.pyx b/simpl/peak_detection.pyx index 207d87e..4db67bf 100644 --- a/simpl/peak_detection.pyx +++ b/simpl/peak_detection.pyx @@ -132,3 +132,15 @@ cdef class SndObjPeakDetection(PeakDetection): if self.thisptr: del self.thisptr self.thisptr = <c_PeakDetection*>0 + + +cdef class LorisPeakDetection(PeakDetection): + def __cinit__(self): + if self.thisptr: + del self.thisptr + self.thisptr = new c_LorisPeakDetection() + + def __dealloc__(self): + if self.thisptr: + del self.thisptr + self.thisptr = <c_PeakDetection*>0 |