blob: 5034ac8cb51d7f9fb2a524fee8e49c5ed1502bfe [file] [log] [blame] [edit]
// Copyright 2025 The PDFium Authors
// 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 CORE_FXCODEC_PROGRESSIVE_DECODER_CONTEXT_H_
#define CORE_FXCODEC_PROGRESSIVE_DECODER_CONTEXT_H_
#ifndef PDF_ENABLE_XFA
#error "XFA Only"
#endif
namespace fxcodec {
class ProgressiveDecoderContext {
public:
virtual ~ProgressiveDecoderContext() = default;
};
} // namespace fxcodec
using fxcodec::ProgressiveDecoderContext;
#endif // CORE_FXCODEC_PROGRESSIVE_DECODER_CONTEXT_H_