2#include <ossia/detail/config.hpp>
16 friend bool operator==(time_signature lhs, time_signature rhs)
noexcept
18 return lhs.upper == rhs.upper && lhs.lower == rhs.lower;
20 friend bool operator!=(time_signature lhs, time_signature rhs)
noexcept
22 return lhs.upper != rhs.upper || lhs.lower != rhs.lower;
26using quarter_note = double;
29std::optional<ossia::time_signature> get_time_signature(
const std::string_view& v);