9 lines
162 B
C++
9 lines
162 B
C++
#pragma once
|
|
|
|
namespace Utils::Json
|
|
{
|
|
std::string TypeToString(nlohmann::json::value_t type);
|
|
|
|
unsigned long ReadFlags(std::string binaryFlags, size_t size);
|
|
}
|