office-gobmx/include/vcl/BitmapArithmeticBlendFilter.hxx
Noel Grandin 44f42499e2 loplugin:unnecessaryvirtual
Change-Id: Ibacb8bd52f5a9838540a68d238c3ed76eff6571b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/170184
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2024-07-09 15:19:44 +02:00

31 lines
853 B
C++

/* -*- 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/.
*
*/
#ifndef INCLUDED_VCL_BITMAPARITHMETICBLENDFILTER_HXX
#define INCLUDED_VCL_BITMAPARITHMETICBLENDFILTER_HXX
#include <vcl/bitmapex.hxx>
class VCL_DLLPUBLIC BitmapArithmeticBlendFilter
{
private:
BitmapEx maBitmapEx;
BitmapEx maBitmapEx2;
public:
BitmapArithmeticBlendFilter(BitmapEx const& rBmpEx, BitmapEx const& rBmpEx2);
~BitmapArithmeticBlendFilter();
BitmapEx execute(double aK1, double aK2, double aK3, double aK4);
};
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */