1 /* Experiment Filter - Header
2 
3  * Copyright (C) 1998 J.A. Bezemer
4  *
5  * Licensed under the terms of the GNU General Public License.
6  * ABSOLUTELY NO WARRANTY.
7  * See the file `COPYING' in this directory.
8  */
9 
10 #ifndef HAVE_SIGNPR_EXPER_H
11 #define HAVE_SIGNPR_EXPER_H
12 
13 
14 #include "signpr_general.h"
15 
16 void experiment_param_defaults (parampointer_t parampointer);
17 
18 #ifndef SWIG
19 void experiment_param_screen (parampointer_t parampointer);
20 #endif
21 
22 void init_experiment_filter (int filterno, parampointer_t parampointer);
23 
24 void delete_experiment_filter (parampointer_t parampointer);
25 
26 #ifndef SWIG
27 sample_t experiment_filter (parampointer_t parampointer);
28 #else
29 sample_t experiment_filter (parampointer_t parampointer, int *filter_type);
30 #endif
31 
32 
33 #endif /* HAVE_SIGNPR_EXPER_H */
34