Replacce pragma once with ifndef
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
#pragma once
|
||||
|
||||
#ifndef RESULT_H
|
||||
#define RESULT_H
|
||||
#include <map>
|
||||
#include <vector>
|
||||
#include <string>
|
||||
@@ -51,3 +51,4 @@ namespace platform {
|
||||
double score = 0.0;
|
||||
};
|
||||
};
|
||||
#endif
|
@@ -1,5 +1,5 @@
|
||||
#pragma once
|
||||
|
||||
#ifndef RESULTSDATASET_H
|
||||
#define RESULTSDATASET_H
|
||||
#include <vector>
|
||||
#include <string>
|
||||
#include <nlohmann/json.hpp>
|
||||
@@ -31,4 +31,5 @@ namespace platform {
|
||||
double maxResult;
|
||||
std::vector<Result> files;
|
||||
};
|
||||
};
|
||||
};
|
||||
#endif
|
@@ -1,5 +1,5 @@
|
||||
#pragma once
|
||||
|
||||
#ifndef RESULTSDATASETEXCEL_H
|
||||
#define RESULTSDATASETEXCEL_H
|
||||
#include <nlohmann/json.hpp>
|
||||
#include "reports/ExcelFile.h"
|
||||
|
||||
@@ -14,3 +14,4 @@ namespace platform {
|
||||
void report(json& data);
|
||||
};
|
||||
}
|
||||
#endif
|
Reference in New Issue
Block a user