From 866fea628ca3df85af4d90520f38317d48c2b4a9 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 15 Mar 2011 04:16:26 +0000 Subject: Add copyright headers to all source files. Switch to GPLv3. git-svn-id: http://svn.drobilla.net/lad/trunk/plugins/mdala.lv2@3087 a436a847-0d15-0410-975c-d299462d15a1 --- lvz/AEffect.h | 36 ++++++++++++++++++------------------ lvz/audioeffectx.h | 34 +++++++++++++++++----------------- lvz/gendata.cpp | 42 ++++++++++++++++++++++-------------------- lvz/wrapper.cpp | 34 +++++++++++++++++----------------- 4 files changed, 74 insertions(+), 72 deletions(-) (limited to 'lvz') diff --git a/lvz/AEffect.h b/lvz/AEffect.h index f547083..32d6863 100644 --- a/lvz/AEffect.h +++ b/lvz/AEffect.h @@ -1,20 +1,20 @@ -/* LVZ - A C++ interface for writing LV2 plugins. - * Copyright 2008-2011 David Robillard - * - * 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 + + 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 . +*/ #ifndef LVZ_AEFFECT_H #define LVZ_AEFFECT_H @@ -29,4 +29,4 @@ struct AEffect { int flags; }; -#endif // LVZ_AFFECT_H +#endif // LVZ_AEFFECT_H diff --git a/lvz/audioeffectx.h b/lvz/audioeffectx.h index 815b11b..3eba2ee 100644 --- a/lvz/audioeffectx.h +++ b/lvz/audioeffectx.h @@ -1,20 +1,20 @@ -/* LVZ - A C++ interface for writing LV2 plugins. - * Copyright 2008-2011 David Robillard - * - * 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 + + 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 . +*/ #ifndef LVZ_AUDIOEFFECTX_H #define LVZ_AUDIOEFFECTX_H 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 - * - * 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 + 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 . +*/ + +#include +#include +#include #include #include #include -#include -#include -#include + #include + #include "audioeffectx.h" #include "AEffEditor.hpp" diff --git a/lvz/wrapper.cpp b/lvz/wrapper.cpp index 7ddcd7a..080ce43 100644 --- a/lvz/wrapper.cpp +++ b/lvz/wrapper.cpp @@ -1,20 +1,20 @@ -/* LVZ - A C++ interface for writing LV2 plugins. - * Copyright (C) 2008-2009 David Robillard - * - * 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 + + 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 . +*/ #ifndef PLUGIN_CLASS #error "This file requires PLUGIN_CLASS to be defined" -- cgit v1.2.1