]> Creatis software - clitk.git/blobdiff - utilities/gengetopt/skels/copyright.cc
Sync gengetopt cmake files with rtk
[clitk.git] / utilities / gengetopt / skels / copyright.cc
diff --git a/utilities/gengetopt/skels/copyright.cc b/utilities/gengetopt/skels/copyright.cc
new file mode 100644 (file)
index 0000000..f0f726b
--- /dev/null
@@ -0,0 +1,35 @@
+/*
+ * File automatically generated by
+ * gengen 1.2 by Lorenzo Bettini 
+ * http://www.gnu.org/software/gengen
+ */
+
+#include "copyright.h"
+
+void
+copyright_gen_class::generate_copyright(ostream &stream, unsigned int indent)
+{
+  string indent_str (indent, ' ');
+  indent = 0;
+
+  stream << "Copyright (C) ";
+  generate_string (year, stream, indent + indent_str.length ());
+  stream << "  Free Software Foundation Inc.";
+  stream << "\n";
+  stream << indent_str;
+  stream << "This program comes with ABSOLUTELY NO WARRANTY; for details";
+  stream << "\n";
+  stream << indent_str;
+  stream << "please see the file 'COPYING' supplied with the source code.";
+  stream << "\n";
+  stream << indent_str;
+  stream << "This is free software, and you are welcome to redistribute it";
+  stream << "\n";
+  stream << indent_str;
+  stream << "under certain conditions; again, see 'COPYING' for details.";
+  stream << "\n";
+  stream << indent_str;
+  stream << "This program is released under the GNU General Public License.";
+  stream << "\n";
+  stream << indent_str;
+}