blob: 00dc8e4442d5c47721ecd975a9800d3c23e4e1c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/*
VASP modular - vector assembling signal processor / objects for Max/MSP and PD
Copyright (c) 2002 Thomas Grill (xovo@gmx.net)
For information on usage and redistribution, and for a DISCLAIMER OF ALL
WARRANTIES, see the file, "license.txt," in this distribution.
*/
#ifndef __VASP_OPS_H
#define __VASP_OPS_H
#include "ops_assign.h"
#include "ops_arith.h"
#include "ops_trnsc.h"
#include "ops_cmp.h"
#include "ops_cplx.h"
#include "ops_flt.h"
#include "ops_dft.h"
#include "ops_gen.h"
#include "ops_wnd.h"
#include "ops_rearr.h"
#include "ops_resmp.h"
#include "ops_feature.h"
#endif
|