summaryrefslogtreecommitdiff
path: root/simpl/peak_detection.pyx
diff options
context:
space:
mode:
Diffstat (limited to 'simpl/peak_detection.pyx')
-rw-r--r--simpl/peak_detection.pyx12
1 files changed, 12 insertions, 0 deletions
diff --git a/simpl/peak_detection.pyx b/simpl/peak_detection.pyx
index 8987564..6afc80a 100644
--- a/simpl/peak_detection.pyx
+++ b/simpl/peak_detection.pyx
@@ -99,3 +99,15 @@ cdef class SMSPeakDetection(PeakDetection):
if self.thisptr:
del self.thisptr
self.thisptr = <c_PeakDetection*>0
+
+
+cdef class SndObjPeakDetection(PeakDetection):
+ def __cinit__(self):
+ if self.thisptr:
+ del self.thisptr
+ self.thisptr = new c_SndObjPeakDetection()
+
+ def __dealloc__(self):
+ if self.thisptr:
+ del self.thisptr
+ self.thisptr = <c_PeakDetection*>0