Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
data_and_bytes_consumed.cpp
Go to the documentation of this file.
1// Copyright 2024 The PDFium Authors
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "core/fxcodec/data_and_bytes_consumed.h"
6
7#include <utility>
8
9namespace fxcodec {
10
11DataAndBytesConsumed::DataAndBytesConsumed(DataVector<uint8_t> data,
12 uint32_t bytes_consumed)
13 : data(std::move(data)), bytes_consumed(bytes_consumed) {}
14
16 default;
17
19 DataAndBytesConsumed&&) noexcept = default;
20
22
23} // namespace fxcodec
DataAndBytesConsumed(DataAndBytesConsumed &&) noexcept
DataAndBytesConsumed & operator=(DataAndBytesConsumed &&) noexcept