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
cpdfsdk_pauseadapter.h
Go to the documentation of this file.
1// Copyright 2016 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// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6
7#ifndef FPDFSDK_CPDFSDK_PAUSEADAPTER_H_
8#define FPDFSDK_CPDFSDK_PAUSEADAPTER_H_
9
10#include "core/fxcrt/pauseindicator_iface.h"
11#include "core/fxcrt/unowned_ptr.h"
12#include "public/fpdf_progressive.h"
13
14class CPDFSDK_PauseAdapter final : public PauseIndicatorIface {
15 public:
16 explicit CPDFSDK_PauseAdapter(IFSDK_PAUSE* IPause);
18
19 bool NeedToPauseNow() override;
20
21 private:
22 UnownedPtr<IFSDK_PAUSE> const m_IPause;
23};
24
25#endif // FPDFSDK_CPDFSDK_PAUSEADAPTER_H_
CPDFSDK_PauseAdapter(IFSDK_PAUSE *IPause)
~CPDFSDK_PauseAdapter() override