From 47372b4650cb3a214ccf8f0947e1e652a5516793 Mon Sep 17 00:00:00 2001 From: Mohamed Ali Date: Tue, 18 Feb 2025 15:15:30 +0200 Subject: tdf#97228 Move include file BitmapDuoToneFilter.hxx to vcl/inc/ Change-Id: I0cbe932889c56b63fa463e50d92605fafaf0907b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/181837 Tested-by: Jenkins Reviewed-by: Hossein --- include/vcl/bitmap/BitmapDuoToneFilter.hxx | 31 ------------------------------ 1 file changed, 31 deletions(-) delete mode 100644 include/vcl/bitmap/BitmapDuoToneFilter.hxx (limited to 'include') diff --git a/include/vcl/bitmap/BitmapDuoToneFilter.hxx b/include/vcl/bitmap/BitmapDuoToneFilter.hxx deleted file mode 100644 index 4a8c5d1c5d91..000000000000 --- a/include/vcl/bitmap/BitmapDuoToneFilter.hxx +++ /dev/null @@ -1,31 +0,0 @@ -/* -*- 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/. - * - */ - -#pragma once - -#include - -class BitmapDuoToneFilter final : public BitmapFilter -{ -public: - BitmapDuoToneFilter(Color nColorOne, Color nColorTwo) - : mnColorOne(nColorOne) - , mnColorTwo(nColorTwo) - { - } - - virtual BitmapEx execute(BitmapEx const& rBitmapEx) const override; - -private: - Color mnColorOne; - Color mnColorTwo; -}; - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit