1 // Copyright 2016 The PDFium Authors 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 7 #ifndef FXBARCODE_CBC_EAN13_H_ 8 #define FXBARCODE_CBC_EAN13_H_ 9 10 #include <stddef.h> 11 12 #include "fxbarcode/BC_Library.h" 13 #include "fxbarcode/cbc_eancode.h" 14 15 class CBC_EAN13 final : public CBC_EANCode { 16 public: 17 CBC_EAN13(); 18 ~CBC_EAN13() override; 19 20 // CBC_EANCode: 21 BC_TYPE GetType() override; 22 size_t GetMaxLength() const override; 23 }; 24 25 #endif // FXBARCODE_CBC_EAN13_H_ 26