diff options
Diffstat (limited to 'note_compiler')
-rw-r--r-- | note_compiler/main.cpp | 20 | ||||
-rw-r--r-- | note_compiler/parser.cpp | 20 | ||||
-rw-r--r-- | note_compiler/parser.h | 20 | ||||
-rw-r--r-- | note_compiler/programs.h | 20 | ||||
-rw-r--r-- | note_compiler/util.cpp | 20 | ||||
-rw-r--r-- | note_compiler/util.h | 20 |
6 files changed, 120 insertions, 0 deletions
diff --git a/note_compiler/main.cpp b/note_compiler/main.cpp index 4d3fcae..68f817b 100644 --- a/note_compiler/main.cpp +++ b/note_compiler/main.cpp @@ -1,3 +1,23 @@ +/* + Copyright (C) 2010-2012 Florian Jung + + This file is part of flo's FM synth. + + flo's FM synth is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + flo's FM synth is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with flo's FM synth. If not, see <http://www.gnu.org/licenses/>. +*/ + + //TODO: auf unbenutzte envelopes achten! #include <iostream> diff --git a/note_compiler/parser.cpp b/note_compiler/parser.cpp index 7fb3fa0..a7f2000 100644 --- a/note_compiler/parser.cpp +++ b/note_compiler/parser.cpp @@ -1,3 +1,23 @@ +/* + Copyright (C) 2010-2012 Florian Jung + + This file is part of flo's FM synth. + + flo's FM synth is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + flo's FM synth is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with flo's FM synth. If not, see <http://www.gnu.org/licenses/>. +*/ + + #include <cstdlib> #include <fstream> diff --git a/note_compiler/parser.h b/note_compiler/parser.h index 71e7545..94d8fe8 100644 --- a/note_compiler/parser.h +++ b/note_compiler/parser.h @@ -1,3 +1,23 @@ +/* + Copyright (C) 2010-2012 Florian Jung + + This file is part of flo's FM synth. + + flo's FM synth is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + flo's FM synth is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with flo's FM synth. If not, see <http://www.gnu.org/licenses/>. +*/ + + #ifndef __PARSER_H__ #define __PARSET_H__ diff --git a/note_compiler/programs.h b/note_compiler/programs.h index d7acd61..1849211 100644 --- a/note_compiler/programs.h +++ b/note_compiler/programs.h @@ -1,3 +1,23 @@ +/* + Copyright (C) 2010-2012 Florian Jung + + This file is part of flo's FM synth. + + flo's FM synth is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + flo's FM synth is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with flo's FM synth. If not, see <http://www.gnu.org/licenses/>. +*/ + + #ifndef __PROGRAMS_H__ #define __PROGRAMS_H__ diff --git a/note_compiler/util.cpp b/note_compiler/util.cpp index f73b8bb..c2a8096 100644 --- a/note_compiler/util.cpp +++ b/note_compiler/util.cpp @@ -1,3 +1,23 @@ +/* + Copyright (C) 2010-2012 Florian Jung + + This file is part of flo's FM synth. + + flo's FM synth is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + flo's FM synth is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with flo's FM synth. If not, see <http://www.gnu.org/licenses/>. +*/ + + #include <iostream> #include <sstream> diff --git a/note_compiler/util.h b/note_compiler/util.h index e571c7d..8f10413 100644 --- a/note_compiler/util.h +++ b/note_compiler/util.h @@ -1,3 +1,23 @@ +/* + Copyright (C) 2010-2012 Florian Jung + + This file is part of flo's FM synth. + + flo's FM synth is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + flo's FM synth is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with flo's FM synth. If not, see <http://www.gnu.org/licenses/>. +*/ + + #ifndef __UTIL_H__ #define __UTIL_H__ |