summaryrefslogtreecommitdiff
path: root/formula/source/core/api/vectortoken.cxx
blob: 0c2e45577198c2042e4400d2b172990bdcd55630 (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
35
36
37
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */

#include "formula/vectortoken.hxx"

namespace formula {

VectorArray::VectorArray( const double* pArray, size_t nLength ) :
    mpArray(pArray), mnLength(nLength) {}

SingleVectorRefToken::SingleVectorRefToken( const double* pArray, size_t nLength ) :
    FormulaToken(svSingleVectorRef, ocPush), maArray(pArray, nLength) {}

const VectorArray& SingleVectorRefToken::GetArray() const
{
    return maArray;
}

DoubleVectorRefToken::DoubleVectorRefToken(
    const std::vector<VectorArray>& rArrays, size_t nRowSize, bool bAbsStart, bool bAbsEnd ) :
    FormulaToken(svDoubleVectorRef, ocPush),
    maArrays(rArrays), mnRowSize(nRowSize), mbAbsStart(bAbsStart), mbAbsEnd(bAbsEnd) {}

const std::vector<VectorArray>& DoubleVectorRefToken::GetArrays() const
{
    return maArrays;
}

}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */