summaryrefslogtreecommitdiff
path: root/xfa/src/fxbarcode/src/BC_PDF417Dimensions.cpp
blob: 7f5400a8ec267ffd7a887ab47e778f8fe98ba80c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// 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

#include "barcode.h"
#include "include/BC_PDF417Dimensions.h"
CBC_Dimensions::CBC_Dimensions(FX_INT32 minCols, FX_INT32 maxCols, FX_INT32 minRows, FX_INT32 maxRows)
{
    m_minCols = minCols;
    m_maxCols = maxCols;
    m_minRows = minRows;
    m_maxRows = maxRows;
}
CBC_Dimensions::~CBC_Dimensions()
{
}
FX_INT32 CBC_Dimensions::getMinCols()
{
    return m_minCols;
}
FX_INT32 CBC_Dimensions::getMaxCols()
{
    return m_maxCols;
}
FX_INT32 CBC_Dimensions::getMinRows()
{
    return m_minRows;
}
FX_INT32 CBC_Dimensions::getMaxRows()
{
    return m_maxRows;
}