*/
+#ifndef _ADESIGN_H
+#define _ADESIGN_H
+
/** \file
Create a new A-design filter
*/
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/** create new A-design filter
\param samplerate sampling-rate of the signal to filter
#define aubio_adsgn_filter_do aubio_filter_do
/** delete a-design filter object */
#define del_aubio_adsgn_filter del_aubio_filter
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* _ADESIGN_H */
*/
-#include "filter.h"
+#ifndef _CDESIGN_H
+#define _CDESIGN_H
/** \file
*/
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/** create new C-design filter
\param samplerate sampling-rate of the signal to filter
#define aubio_cdsgn_filter_do aubio_filter_do
/** delete c-design filter object */
#define del_aubio_cdsgn_filter del_aubio_filter
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* _CDESIGN_H */