diff options
Diffstat (limited to 'source/10-common')
-rw-r--r-- | source/10-common/DtoHelper.hpp | 10 | ||||
-rw-r--r-- | source/10-common/Utils.hpp | 1 |
2 files changed, 10 insertions, 1 deletions
diff --git a/source/10-common/DtoHelper.hpp b/source/10-common/DtoHelper.hpp new file mode 100644 index 0000000..871f9c6 --- /dev/null +++ b/source/10-common/DtoHelper.hpp @@ -0,0 +1,10 @@ +#pragma once + +#include <rapidjson/document.h> +#include <json_dto/pub.hpp> + +namespace json_dto { + + + +} diff --git a/source/10-common/Utils.hpp b/source/10-common/Utils.hpp index 82569d8..668261b 100644 --- a/source/10-common/Utils.hpp +++ b/source/10-common/Utils.hpp @@ -33,7 +33,6 @@ bool ReadCstdioLine(FILE* file, char* buffer, size_t bufferSize, size_t* outLine std::string ReadFileAsString(const std::filesystem::path& path); - constexpr float Abs(float v) noexcept { return v < 0.0f ? -v : v; } |