Add best results Excel

This commit is contained in:
2023-09-28 17:12:04 +02:00
parent 85202260f3
commit cfcf3c16df
6 changed files with 62 additions and 17 deletions

View File

@@ -1,11 +1,19 @@
#ifndef EXCELFILE_H
#define EXCELFILE_H
#include <locale>
#include <string>
#include <map>
#include "xlsxwriter.h"
using namespace std;
namespace platform {
struct separated : numpunct<char> {
char do_decimal_point() const { return ','; }
char do_thousands_sep() const { return '.'; }
string do_grouping() const { return "\03"; }
};
class ExcelFile {
public:
ExcelFile();