From e778668fe92b8c60e0537ee48f79d5af6c1a2f1e Mon Sep 17 00:00:00 2001 From: Dan Sinclair Date: Wed, 29 Mar 2017 15:18:41 -0400 Subject: Move xfa/fxbarcode fxbarcode/ Nothing in fxbarcode/ depends on XFA code. This CL moves xfa/fxbarcode to be fxbarcode/ and creates a static_library for fxbarcode which is depend on by the xfa library. Change-Id: I0b708737b07efb94b769a5238d92af92bc62880d Reviewed-on: https://pdfium-review.googlesource.com/3291 Reviewed-by: Tom Sepez Commit-Queue: dsinclair --- xfa/fxbarcode/common/reedsolomon/BC_ReedSolomon.h | 32 ----------------------- 1 file changed, 32 deletions(-) delete mode 100644 xfa/fxbarcode/common/reedsolomon/BC_ReedSolomon.h (limited to 'xfa/fxbarcode/common/reedsolomon/BC_ReedSolomon.h') diff --git a/xfa/fxbarcode/common/reedsolomon/BC_ReedSolomon.h b/xfa/fxbarcode/common/reedsolomon/BC_ReedSolomon.h deleted file mode 100644 index 5e5c7c52d3..0000000000 --- a/xfa/fxbarcode/common/reedsolomon/BC_ReedSolomon.h +++ /dev/null @@ -1,32 +0,0 @@ -// Copyright 2014 PDFium Authors. All rights reserved. -// 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 XFA_FXBARCODE_COMMON_REEDSOLOMON_BC_REEDSOLOMON_H_ -#define XFA_FXBARCODE_COMMON_REEDSOLOMON_BC_REEDSOLOMON_H_ - -#include - -#include "core/fxcrt/fx_basic.h" - -class CBC_ReedSolomonGF256; -class CBC_ReedSolomonGF256Poly; - -class CBC_ReedSolomonEncoder { - public: - explicit CBC_ReedSolomonEncoder(CBC_ReedSolomonGF256* field); - virtual ~CBC_ReedSolomonEncoder(); - - void Encode(std::vector* toEncode, size_t ecBytes, int32_t& e); - virtual void Init(); - - private: - CBC_ReedSolomonGF256Poly* BuildGenerator(size_t degree, int32_t& e); - - CBC_ReedSolomonGF256* m_field; - std::vector m_cachedGenerators; -}; - -#endif // XFA_FXBARCODE_COMMON_REEDSOLOMON_BC_REEDSOLOMON_H_ -- cgit v1.2.3