mirror of
https://pdfium.googlesource.com/pdfium
synced 2026-08-02 05:04:39 +08:00
Some build configs do not get this include for free. Change-Id: I20c1a4cd793acbdb3f89f33395d9a9b0d3cd3f61 Reviewed-on: https://pdfium-review.googlesource.com/c/pdfium/+/139850 Reviewed-by: Tom Sepez <tsepez@chromium.org> Commit-Queue: Lei Zhang <thestig@chromium.org>
22 lines
565 B
C++
22 lines
565 B
C++
// Copyright 2018 The PDFium Authors
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef FXBARCODE_ONED_BC_ONEDEANWRITER_H_
|
|
#define FXBARCODE_ONED_BC_ONEDEANWRITER_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "fxbarcode/oned/BC_OneDimWriter.h"
|
|
|
|
class CBC_OneDimEANWriter : public CBC_OneDimWriter {
|
|
public:
|
|
CBC_OneDimEANWriter();
|
|
~CBC_OneDimEANWriter() override;
|
|
|
|
virtual void InitEANWriter();
|
|
virtual int32_t CalcChecksum(const ByteString& contents) = 0;
|
|
};
|
|
|
|
#endif // FXBARCODE_ONED_BC_ONEDEANWRITER_H_
|