initial refactoring

This commit is contained in:
Sebastien L
2023-12-04 23:25:57 -05:00
parent d03678ea81
commit c0ddf0a997
331 changed files with 29663 additions and 16553 deletions

View File

@@ -10,6 +10,7 @@
#include <stdio.h>
#include <string.h>
#include <string>
#include <time.h>
namespace Metrics {
struct StrCompare {
@@ -45,7 +46,7 @@ class Event {
}
private:
char* _name = nullptr;
uint32_t _time;
std::time_t _time;
cJSON* _json = nullptr;
};