Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
cbc_upca.h
Go to the documentation of this file.
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_UPCA_H_
8#define FXBARCODE_CBC_UPCA_H_
9
10#include <stddef.h>
11
12#include "fxbarcode/BC_Library.h"
13#include "fxbarcode/cbc_eancode.h"
14
15class CBC_UPCA final : public CBC_EANCode {
16 public:
17 CBC_UPCA();
18 ~CBC_UPCA() override;
19
20 // CBC_EANCode:
21 BC_TYPE GetType() override;
22 size_t GetMaxLength() const override;
23};
24
25#endif // FXBARCODE_CBC_UPCA_H_
BC_TYPE
Definition BC_Library.h:25
~CBC_UPCA() override
BC_TYPE GetType() override
Definition cbc_upca.cpp:32
size_t GetMaxLength() const override
Definition cbc_upca.cpp:36