diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-05-09 12:36:41 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-05-09 17:50:54 +0000 |
commit | ae4656edebaea24d18d11a845c663240bf8e9d2d (patch) | |
tree | 51bcfc9916a1e13ca080f76a4cf65b21fa647993 /fpdfsdk/fsdk_filewriteadapter.h | |
parent | a0b1954794b7a8a279ba00787628cc7f8d1419d9 (diff) | |
download | pdfium-ae4656edebaea24d18d11a845c663240bf8e9d2d.tar.xz |
Move FPDF_FILEWRITE adapter to own file
This Cl moves the adapater out of the fpdfsave.cpp file into its own
h/cpp files. The adapter was renamed for clarity. The CPDF_Creator was
modified to take the adapter as a constructor param and the Create
methods consolidated.
Change-Id: Icb104f195ef532dda053c859aae356a8d4a7a54c
Reviewed-on: https://pdfium-review.googlesource.com/5151
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fpdfsdk/fsdk_filewriteadapter.h')
-rw-r--r-- | fpdfsdk/fsdk_filewriteadapter.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/fpdfsdk/fsdk_filewriteadapter.h b/fpdfsdk/fsdk_filewriteadapter.h new file mode 100644 index 0000000000..78f34cc679 --- /dev/null +++ b/fpdfsdk/fsdk_filewriteadapter.h @@ -0,0 +1,28 @@ +// 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_FSDK_FILEWRITEADAPTER_H_ +#define FPDFSDK_FSDK_FILEWRITEADAPTER_H_ + +#include "core/fxcrt/cfx_retain_ptr.h" +#include "core/fxcrt/fx_stream.h" +#include "public/fpdf_save.h" + +class FSDK_FileWriteAdapter : public IFX_WriteStream { + public: + template <typename T, typename... Args> + friend CFX_RetainPtr<T> pdfium::MakeRetain(Args&&... args); + + bool WriteBlock(const void* data, size_t size) override; + + private: + explicit FSDK_FileWriteAdapter(FPDF_FILEWRITE* fileWriteStruct); + ~FSDK_FileWriteAdapter() override; + + FPDF_FILEWRITE* fileWriteStruct_; +}; + +#endif // FPDFSDK_FSDK_FILEWRITEADAPTER_H_ |