Create ReportExcel eq to ReportConsole

This commit is contained in:
2023-08-21 17:51:49 +02:00
parent 8066701c3c
commit d2da0ddb88
7 changed files with 117 additions and 18 deletions

View File

@@ -10,7 +10,7 @@ namespace platform {
char do_thousands_sep() const { return '.'; }
string do_grouping() const { return "\03"; }
};
string headerLine(const string& text)
string ReportConsole::headerLine(const string& text)
{
int n = MAXL - text.length() - 3;
n = n < 0 ? 0 : n;