blob: e7771ef663313ca6a1f804211d4d1d60db8bb77c [file] [log] [blame]
// Copyright 2023 The PDFium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "samples/helpers/page_renderer.h"
#include "public/fpdfview.h"
PageRenderer::PageRenderer(FPDF_PAGE page, int width, int height, int flags)
: page_(page), width_(width), height_(height), flags_(flags) {}
PageRenderer::~PageRenderer() = default;
bool PageRenderer::Continue() {
return false;
}