update copyright dates

This commit is contained in:
Günter Obiltschnig 2021-06-18 09:16:55 +02:00
parent 1cbc564add
commit 4a4b1149ce
3 changed files with 19 additions and 5 deletions

View File

@ -73,8 +73,22 @@ protected:
{
HelpFormatter helpFormatter(options());
helpFormatter.setCommand(commandName());
helpFormatter.setUsage("OPTIONS");
helpFormatter.setHeader("POCO C++ Libraries ORM Compiler");
helpFormatter.setUsage("[<option> ...] <file>");
helpFormatter.setHeader("POCO C++ Libraries ActiveRecord ORM Compiler");
helpFormatter.setHeader(
"\n"
"The POCO C++ Libraries ActiveRecord ORM Compiler.\n"
"Copyright (c) 2020-2021 by Applied Informatics Software Engineering GmbH.\n"
"All rights reserved.\n\n"
"This program generates C++ source code from an ActiveRecord "
"XML definition. "
"The following command line options are supported:"
);
helpFormatter.setFooter(
"For more information, please see the POCO C++ Libraries "
"documentation at <https://pocoproject.org/docs/>."
);
helpFormatter.setIndent(8);
helpFormatter.format(std::cout);
}

View File

@ -117,7 +117,7 @@ protected:
helpFormatter.setHeader(
"\n"
"The POCO C++ Text Encodings Compiler.\n"
"Copyright (c) 2018 by Applied Informatics Software Engineering GmbH.\n"
"Copyright (c) 2018-2021 by Applied Informatics Software Engineering GmbH.\n"
"All rights reserved.\n\n"
"This program compiles Unicode character encoding tables "
"from http://www.unicode.org/Public/MAPPINGS/ to TextEncoding "

View File

@ -216,7 +216,7 @@ protected:
helpFormatter.setHeader(
"\n"
"The POCO C++ Server Page Compiler.\n"
"Copyright (c) 2008-2020 by Applied Informatics Software Engineering GmbH.\n"
"Copyright (c) 2008-2021 by Applied Informatics Software Engineering GmbH.\n"
"All rights reserved.\n\n"
"This program compiles web pages containing embedded C++ code "
"into a C++ class that can be used with the HTTP server "
@ -225,7 +225,7 @@ protected:
);
helpFormatter.setFooter(
"For more information, please see the POCO C++ Libraries "
"documentation at <http://pocoproject.org/docs/>."
"documentation at <https://pocoproject.org/docs/>."
);
helpFormatter.setIndent(8);
helpFormatter.format(std::cout);