This commit is contained in:
MihailRis
2024-05-06 03:15:27 +03:00
parent 91aacafecb
commit f27a418dbe
81 changed files with 310 additions and 302 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
#ifndef UTIL_DATA_IO_H_
#define UTIL_DATA_IO_H_
#ifndef UTIL_DATA_IO_HPP_
#define UTIL_DATA_IO_HPP_
#include "../typedefs.h"
@@ -53,4 +53,4 @@ namespace dataio {
}
}
#endif // UTIL_DATA_IO_H_
#endif // UTIL_DATA_IO_HPP_
+2 -2
View File
@@ -1,5 +1,5 @@
#include "listutil.h"
#include "../util/stringutil.h"
#include "listutil.hpp"
#include "../util/stringutil.hpp"
#include <sstream>
+3 -3
View File
@@ -1,12 +1,12 @@
#include "platform.h"
#include "platform.hpp"
#include "../typedefs.h"
#include <sstream>
#include <iomanip>
#include <time.h>
#include <iostream>
#include "../typedefs.h"
#ifdef _WIN32
#include <Windows.h>
@@ -1,5 +1,5 @@
#ifndef UTIL_PLATFORM_H_
#define UTIL_PLATFORM_H_
#ifndef UTIL_PLATFORM_HPP_
#define UTIL_PLATFORM_HPP_
#include <string>
@@ -9,4 +9,4 @@ namespace platform {
std::string detect_locale();
}
#endif // UTIL_PLATFORM_H_
#endif // UTIL_PLATFORM_HPP_
+1 -2
View File
@@ -1,7 +1,6 @@
#include "stringutil.h"
#include "stringutil.hpp"
#include <cmath>
#include <vector>
#include <locale>
#include <iomanip>
#include <sstream>
@@ -1,9 +1,10 @@
#ifndef UTIL_STRINGUTIL_H_
#define UTIL_STRINGUTIL_H_
#ifndef UTIL_STRINGUTIL_HPP_
#define UTIL_STRINGUTIL_HPP_
#include "../typedefs.h"
#include <string>
#include <vector>
#include "../typedefs.h"
namespace util {
/// @brief Function used for string serialization in text formats
@@ -58,4 +59,4 @@ namespace util {
std::string format_data_size(size_t size);
}
#endif // UTIL_STRINGUTIL_H_
#endif // UTIL_STRINGUTIL_HPP_