Changeset 34eee42 for src/temporal


Ignore:
Timestamp:
Sep 28, 2009, 9:57:10 PM (15 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
d9c45df
Parents:
a695854
Message:

src/temporal/: avoid include in .h, protect with #ifndef _FOO_H and #ifdef cplusplus

Location:
src/temporal
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/temporal/adesign.h

    ra695854 r34eee42  
    1818*/
    1919
     20#ifndef _ADESIGN_H
     21#define _ADESIGN_H
     22
    2023/** \file
    2124
     
    2528
    2629*/
     30
     31#ifdef __cplusplus
     32extern "C" {
     33#endif
    2734
    2835/** create new A-design filter
     
    3845/** delete a-design filter object */
    3946#define del_aubio_adsgn_filter del_aubio_filter
     47
     48#ifdef __cplusplus
     49}
     50#endif
     51
     52#endif /* _ADESIGN_H */
  • src/temporal/cdesign.h

    ra695854 r34eee42  
    1818*/
    1919
    20 #include "filter.h"
     20#ifndef _CDESIGN_H
     21#define _CDESIGN_H
    2122
    2223/** \file
     
    2728
    2829*/
     30
     31#ifdef __cplusplus
     32extern "C" {
     33#endif
    2934
    3035/** create new C-design filter
     
    4045/** delete c-design filter object */
    4146#define del_aubio_cdsgn_filter del_aubio_filter
     47
     48#ifdef __cplusplus
     49}
     50#endif
     51
     52#endif /* _CDESIGN_H */
Note: See TracChangeset for help on using the changeset viewer.