#ifndef seafire__protocol__rfc7232__if_none_match_hxx_ #define seafire__protocol__rfc7232__if_none_match_hxx_ #include #include #include namespace seafire::protocol::rfc7232 { struct if_none_match_t { static constexpr char const name[] = "if-none-match"; static std::optional try_parse(std::vector const& strings, std::error_code& ec) { // FIXME implement. return {}; } }; inline std::string to_string(if_none_match_t const& if_none_match) { // FIXME implement. return {}; } } // namespace seafire::protocol::rfc7232 #endif