F.E.I.S/src/better_hakus.hpp

13 lines
261 B
C++
Raw Normal View History

#pragma once
2022-04-03 15:59:05 +02:00
#include <optional>
#include <set>
#include <json.hpp>
#include "special_numeric_types.hpp"
using Hakus = std::set<Fraction>;
2022-04-03 15:59:05 +02:00
nlohmann::ordered_json dump_hakus(const Hakus& hakus);
std::optional<Hakus> load_hakus(const nlohmann::json& timing);