diff options
Diffstat (limited to 'lvz/gendata.cpp')
-rw-r--r-- | lvz/gendata.cpp | 42 |
1 files changed, 22 insertions, 20 deletions
diff --git a/lvz/gendata.cpp b/lvz/gendata.cpp index 8a95722..dac5dc7 100644 --- a/lvz/gendata.cpp +++ b/lvz/gendata.cpp @@ -1,28 +1,30 @@ -/* LVZ - A C++ interface for writing LV2 plugins. - * Copyright (C) 2008-2009 David Robillard <http://drobilla.net> - * - * This library 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 2 of the License, or (at your option) - * any later version. - * - * This library 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 this program; if not, write to the Free Software Foundation, Inc., - * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. - */ +/* + LVZ - A C++ interface for writing LV2 plugins. + Copyright 2008-2011 David Robillard <http://drobilla.net> + This 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. + + This software 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 this software. If not, see <http://www.gnu.org/licenses/>. +*/ + +#include <cassert> +#include <fstream> +#include <iostream> #include <list> #include <map> #include <string> -#include <cassert> -#include <iostream> -#include <fstream> + #include <dlfcn.h> + #include "audioeffectx.h" #include "AEffEditor.hpp" |