Subversion Repositories DIN Is Noise

Rev

Rev 1857 | Rev 2097 | 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
2009 jag 3
* DIN Is Noise is copyright (c) 2006-2023 Jagannathan Sampath
1713 jag 4
* DIN Is Noise is released under GNU Public License 2.0
1528 jag 5
* For more information, please visit https://dinisnoise.org/
6
*/
7
 
8
#ifndef __FUNKTION
9
#define __FUNKTION
10
 
11
struct funktion {
12
  virtual float operator() (float ra = 0, float rea = 0) = 0;
13
};
14
 
15
#endif
16
 
17
 
18