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.
32 lines
991 B
32 lines
991 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
|
|
|
|
#ifndef FPDFSDK_CPDFSDK_FILEWRITEADAPTER_H_
|
|
#define FPDFSDK_CPDFSDK_FILEWRITEADAPTER_H_
|
|
|
|
#include "core/fxcrt/fx_stream.h"
|
|
#include "core/fxcrt/retain_ptr.h"
|
|
#include "core/fxcrt/unowned_ptr.h"
|
|
#include "public/fpdf_save.h"
|
|
|
|
class CPDFSDK_FileWriteAdapter final : public IFX_RetainableWriteStream {
|
|
public:
|
|
template <typename T, typename... Args>
|
|
friend RetainPtr<T> pdfium::MakeRetain(Args&&... args);
|
|
|
|
// IFX_WriteStream:
|
|
bool WriteBlock(const void* data, size_t size) override;
|
|
bool WriteString(ByteStringView str) override;
|
|
|
|
private:
|
|
explicit CPDFSDK_FileWriteAdapter(FPDF_FILEWRITE* file_write);
|
|
~CPDFSDK_FileWriteAdapter() override;
|
|
|
|
UnownedPtr<FPDF_FILEWRITE> file_write_;
|
|
};
|
|
|
|
#endif // FPDFSDK_CPDFSDK_FILEWRITEADAPTER_H_
|