ppc-lang/include/utils/json.hh

11 lines
201 B
C++
Raw Normal View History

2022-10-09 11:43:28 +00:00
#pragma once
#include <string>
#include <memory>
#include <vector>
#include <unordered_map>
#include "utils/data.hh"
namespace ppc::data::json {
std::string stringify(const data::value_t &map);
}