Subversion Repositories DIN Is Noise

Rev

Rev 1539 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1528 jag 1
/*
2
* funktion.h
3
* DIN Is Noise is copyright (c) 2006-2020 Jagannathan Sampath
4
* For more information, please visit https://dinisnoise.org/
5
*/
6
 
7
#ifndef __FUNKTION
8
#define __FUNKTION
9
 
10
/*
11
* funktion.h
12
* DIN Is Noise is copyright (c) 2006-2020 Jagannathan Sampath
13
* For more information, please visit https://dinisnoise.org/
14
*/
15
 
16
 
17
struct funktion {
18
  virtual float operator() (float ra = 0, float rea = 0) = 0;
19
};
20
 
21
#endif
22
 
23
 
24