LibreOffice Module sc (master) 1
op_addin.hxx
Go to the documentation of this file.
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#pragma once
11
12#include "opbase.hxx"
13#include "utils.hxx"
14
15namespace sc::opencl {
16
17class OpBesselj: public Normal
18{
19public:
21 const std::string &sSymName, SubArguments &vSubArguments) override;
22 virtual std::string BinFuncName() const override { return "Besselj"; }
23};
24class OpGestep: public Normal
25{
26public:
28 const std::string &sSymName, SubArguments &vSubArguments) override;
29 virtual std::string BinFuncName() const override { return "Gestep"; }
30};
31
32}
33
34/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual void GenSlidingWindowFunction(outputstream &ss, const std::string &sSymName, SubArguments &vSubArguments) override
Definition: op_addin.cxx:19
virtual std::string BinFuncName() const override
Definition: op_addin.hxx:22
virtual void GenSlidingWindowFunction(outputstream &ss, const std::string &sSymName, SubArguments &vSubArguments) override
Definition: op_addin.cxx:108
virtual std::string BinFuncName() const override
Definition: op_addin.hxx:29
std::vector< DynamicKernelArgumentRef > SubArguments
Definition: opbase.hxx:347