You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
763 B
23 lines
763 B
// Copyright 2017 PDFium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
|
|
|
|
#include "fpdfsdk/cpdfsdk_filewriteadapter.h"
|
|
|
|
CPDFSDK_FileWriteAdapter::CPDFSDK_FileWriteAdapter(FPDF_FILEWRITE* file_write)
|
|
: file_write_(file_write) {
|
|
ASSERT(file_write_);
|
|
}
|
|
|
|
CPDFSDK_FileWriteAdapter::~CPDFSDK_FileWriteAdapter() {}
|
|
|
|
bool CPDFSDK_FileWriteAdapter::WriteBlock(const void* data, size_t size) {
|
|
return file_write_->WriteBlock(file_write_.Get(), data, size) != 0;
|
|
}
|
|
|
|
bool CPDFSDK_FileWriteAdapter::WriteString(ByteStringView str) {
|
|
return WriteBlock(str.unterminated_c_str(), str.GetLength());
|
|
}
|