5#include <userver/formats/json/parser/typed_parser.hpp>
11template <
typename T =
int>
20 void Int64(std::int64_t i)
override;
22 void Uint64(std::uint64_t i)
override;
24 void Double(
double value)
override;
26 std::string GetPathItem()
const override {
return {}; }
28 std::string Expected()
const override {
return "integer"; }
37 void Int64(std::int64_t i)
override;
39 void Uint64(std::uint64_t i)
override;
41 void Double(
double value)
override;
43 std::string GetPathItem()
const override {
return {}; }
45 std::string Expected()
const override {
return "integer"; }
48using IntParser = IntegralParser<std::int32_t>;
49using Int32Parser = IntegralParser<std::int32_t>;
50using Int64Parser = IntegralParser<std::int64_t>;