mirror of
https://gitlab.com/square-game-liberation-front/F.E.I.S.git
synced 2025-02-28 23:41:33 +01:00
13 lines
261 B
C++
13 lines
261 B
C++
#pragma once
|
|
|
|
#include <optional>
|
|
#include <set>
|
|
|
|
#include <json.hpp>
|
|
|
|
#include "special_numeric_types.hpp"
|
|
|
|
using Hakus = std::set<Fraction>;
|
|
|
|
nlohmann::ordered_json dump_hakus(const Hakus& hakus);
|
|
std::optional<Hakus> load_hakus(const nlohmann::json& timing); |