From b9aacd9c2fdc61721c8ca3e1b40ebc92daa3772e Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Wed, 5 Nov 2025 13:38:04 +0100 Subject: Reworking structure --- lib/c++/write_json.hpp | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 lib/c++/write_json.hpp (limited to 'lib/c++/write_json.hpp') diff --git a/lib/c++/write_json.hpp b/lib/c++/write_json.hpp deleted file mode 100644 index 19bbfa6..0000000 --- a/lib/c++/write_json.hpp +++ /dev/null @@ -1,27 +0,0 @@ -#pragma once - -#include - -#include -#include - -#include - - -namespace kel { -namespace lbm { - -template -saw::error_or write_json(const std::filesystem::path& file_name, const saw::data& field){ - saw::data j_data; - { - saw::codec j_codec; - auto eov = j_codec.encode(field, j_data); - if(eov.is_error()){ - return eov; - } - } - return saw::make_void(); -} -} -} -- cgit v1.2.3