blob: bd302f2613653ee09ac82eb77a7b4f255191eb5b [file] [log] [blame]
weili9f515bc2016-07-24 08:08:24 -07001// Copyright 2016 PDFium Authors. All rights reserved.
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
dsinclair114e46a2016-09-29 17:18:21 -07007#ifndef FPDFSDK_FSDK_PAUSEADAPTER_H_
8#define FPDFSDK_FSDK_PAUSEADAPTER_H_
weili9f515bc2016-07-24 08:08:24 -07009
dsinclaira52ab742016-09-29 13:59:29 -070010#include "core/fxcrt/fx_basic.h"
11#include "core/fxcrt/fx_system.h"
weili9f515bc2016-07-24 08:08:24 -070012#include "public/fpdf_progressive.h"
13
14class IFSDK_PAUSE_Adapter : public IFX_Pause {
15 public:
16 explicit IFSDK_PAUSE_Adapter(IFSDK_PAUSE* IPause);
17 ~IFSDK_PAUSE_Adapter() override;
18
tsepez4cf55152016-11-02 14:37:54 -070019 bool NeedToPauseNow() override;
weili9f515bc2016-07-24 08:08:24 -070020
21 private:
22 IFSDK_PAUSE* const m_IPause;
23};
24
dsinclair114e46a2016-09-29 17:18:21 -070025#endif // FPDFSDK_FSDK_PAUSEADAPTER_H_