// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_CBOR_VALUES_H_ #define COMPONENTS_CBOR_VALUES_H_ #include <stdint.h> #include <string> #include <string_view> #include <tuple> #include <vector> #include "base/check.h" #include "base/containers/flat_map.h" #include "base/containers/span.h" #include "base/notreached.h" #include "components/cbor/cbor_export.h" namespace cbor { // A class for Concise Binary Object Representation (CBOR) values. // This does not support indefinite-length encodings. class CBOR_EXPORT Value { … }; } // namespace cbor #endif // COMPONENTS_CBOR_VALUES_H_