migrate from dynamic::Value to dv::value & total erase namespace 'dynamic'

This commit is contained in:
MihailRis
2024-09-18 23:31:18 +03:00
parent d3ba4b2e3e
commit 34d2e6d400
69 changed files with 1247 additions and 2248 deletions
+4 -3
View File
@@ -2,14 +2,15 @@
#include <string>
#include "data/dynamic.hpp"
#include "data/dv.hpp"
class SettingsHandler;
namespace toml {
std::string stringify(SettingsHandler& handler);
std::string stringify(dynamic::Map& root, const std::string& name = "");
dynamic::Map_sptr parse(std::string_view file, std::string_view source);
std::string stringify(const dv::value& root, const std::string& name = "");
dv::value parse(std::string_view file, std::string_view source);
void parse(
SettingsHandler& handler, std::string_view file, std::string_view source