Rev 1539 | Rev 1713 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1528 | jag | 1 | /* |
2 | * funktion.h |
||
1712 | jag | 3 | * DIN Is Noise is copyright (c) 2006-2021 Jagannathan Sampath |
1528 | jag | 4 | * For more information, please visit https://dinisnoise.org/ |
5 | */ |
||
6 | |||
7 | #ifndef __FUNKTION |
||
8 | #define __FUNKTION |
||
9 | |||
10 | struct funktion { |
||
11 | virtual float operator() (float ra = 0, float rea = 0) = 0; |
||
12 | }; |
||
13 | |||
14 | #endif |
||
15 | |||
16 | |||
17 |