]> Creatis software - clitk.git/blob - utilities/gengetopt/skels/copyright.cc
Sync gengetopt cmake files with rtk
[clitk.git] / utilities / gengetopt / skels / copyright.cc
1 /*
2  * File automatically generated by
3  * gengen 1.2 by Lorenzo Bettini 
4  * http://www.gnu.org/software/gengen
5  */
6
7 #include "copyright.h"
8
9 void
10 copyright_gen_class::generate_copyright(ostream &stream, unsigned int indent)
11 {
12   string indent_str (indent, ' ');
13   indent = 0;
14
15   stream << "Copyright (C) ";
16   generate_string (year, stream, indent + indent_str.length ());
17   stream << "  Free Software Foundation Inc.";
18   stream << "\n";
19   stream << indent_str;
20   stream << "This program comes with ABSOLUTELY NO WARRANTY; for details";
21   stream << "\n";
22   stream << indent_str;
23   stream << "please see the file 'COPYING' supplied with the source code.";
24   stream << "\n";
25   stream << indent_str;
26   stream << "This is free software, and you are welcome to redistribute it";
27   stream << "\n";
28   stream << indent_str;
29   stream << "under certain conditions; again, see 'COPYING' for details.";
30   stream << "\n";
31   stream << indent_str;
32   stream << "This program is released under the GNU General Public License.";
33   stream << "\n";
34   stream << indent_str;
35 }