//================================================================================================== // L i c e n s e Interface // By Bruno Bachelet //================================================================================================== // Copyright (c) 1999-2016 // Bruno Bachelet - bruno@nawouak.net - http://www.nawouak.net // // This file is part of the B++ Library. This library is free software; you can redistribute it // and/or modify it under the terms of the GNU Library 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 Library General Public License for more details (http://www.gnu.org).
/*DESCRIPTION*/ /* This header contains the terms of the license of the B++ Library and its programs (the B++ Tools). */
// File Name //------------------------------------------------------------------------------------- #line __LINE__ "license.hpp"
// Guardian //-------------------------------------------------------------------------------------- #ifndef guLicense #define guLicense
// B++ Program License //--------------------------------------------------------------------------- /*MACROCOMMAND*/ /* Introduction sentence to the license of a B++ Tool. */ #define BPP_TOOL_INTRODUCTION \ "This program is submitted to:", \ "~" \
/*MACROCOMMAND*/ /* License of a B++ Tool. */ #define BPP_TOOL_LICENSE \ "Copyright (c) 1999-2016", \ "Bruno Bachelet - bruno@nawouak.net - http://www.nawouak.net", \ "", \ "This program 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 program 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 (http://www.gnu.org).", \ "~" \
// B++ Library License //--------------------------------------------------------------------------- /*MACROCOMMAND*/ /* Introduction sentence to the license of the B++ Library. */ #define BPP_LIBRARY_INTRODUCTION \ "All the source files of the B++ Library are submitted to:", \ "~" \
/*MACROCOMMAND*/ /* License of the B++ Library. */ #define BPP_LIBRARY_LICENSE \ "Copyright (c) 1999-2016", \ "Bruno Bachelet - bruno@nawouak.net - http://www.nawouak.net", \ "", \ "This program is part of the B++ Library. This library is free", \ "software; you can redistribute it and/or modify it under the terms of", \ "the GNU Library 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", \ "Library General Public License for more details (http://www.gnu.org).", \ "~" \
// End //------------------------------------------------------------------------------------------- #endif |
|