Replacce pragma once with ifndef

This commit is contained in:
2024-05-18 13:00:13 +02:00
parent c165a4bdda
commit 25bd7a42c6
41 changed files with 118 additions and 89 deletions

View File

@@ -1,4 +1,5 @@
#pragma once
#ifndef REPORT_EXCEL_COMPARED_H
#define REPORT_EXCEL_COMPARED_H
#include "ReportExcel.h"
namespace platform {
class ReportExcelCompared : public ExcelFile {
@@ -16,4 +17,5 @@ namespace platform {
std::string leaves_label;
std::string depth_label;
};
};
};
#endif