Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : */
9 :
10 : #ifndef INCLUDED_SC_SOURCE_CORE_INC_FORMULAGROUPCL_HXX
11 : #define INCLUDED_SC_SOURCE_CORE_INC_FORMULAGROUPCL_HXX
12 :
13 : #include "formulagroup.hxx"
14 :
15 : namespace sc { namespace opencl {
16 :
17 : class FormulaGroupInterpreterOpenCL : public FormulaGroupInterpreter
18 : {
19 : public:
20 0 : FormulaGroupInterpreterOpenCL() :
21 0 : FormulaGroupInterpreter()
22 : {
23 0 : }
24 0 : virtual ~FormulaGroupInterpreterOpenCL()
25 0 : {
26 0 : }
27 :
28 : virtual ScMatrixRef inverseMatrix( const ScMatrix& rMat ) SAL_OVERRIDE;
29 : virtual CompiledFormula* createCompiledFormula( ScDocument& rDoc,
30 : const ScAddress& rTopPos,
31 : ScFormulaCellGroup& rGroup,
32 : ScTokenArray& rCode ) SAL_OVERRIDE;
33 : virtual bool interpret( ScDocument& rDoc, const ScAddress& rTopPos,
34 : ScFormulaCellGroupRef& xGroup, ScTokenArray& rCode ) SAL_OVERRIDE;
35 : };
36 :
37 : }} // namespace sc::opencl
38 :
39 : #endif // INCLUDED_SC_SOURCE_CORE_INC_FORMULAGROUPCL_HXX
40 :
41 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|