folly/folly/json/bser/Load.cpp

/*
 * Copyright (c) Meta Platforms, Inc. and affiliates.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include <folly/json/bser/Bser.h>

#include <folly/String.h>
#include <folly/io/Cursor.h>

usingnamespacefolly;
Cursor;

namespace folly {
namespace bser {
static dynamic parseBser(Cursor& curs);

template <typename... ARGS>
[[noreturn]] static void throwDecodeError(Cursor& curs, ARGS&&... args) {}

static int64_t decodeInt(Cursor& curs) {}

static std::string decodeString(Cursor& curs) {}

static dynamic decodeArray(Cursor& curs) {}

static dynamic decodeObject(Cursor& curs) {}

static dynamic decodeTemplate(Cursor& curs) {}

static dynamic parseBser(Cursor& curs) {}

static size_t decodeHeader(Cursor& curs) {}

size_t decodePduLength(const folly::IOBuf* buf) {}

folly::dynamic parseBser(const IOBuf* buf) {}

folly::dynamic parseBser(ByteRange str) {}

folly::dynamic parseBser(StringPiece str) {}
} // namespace bser
} // namespace folly

/* vim:ts=2:sw=2:et:
 */