...after a little tweak to BitmapMosaicFilter Change-Id: I76b8ffdbf719a9d7960e7f3dafeb3adeb2300ec5 Reviewed-on: https://gerrit.libreoffice.org/60165 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
29 lines
720 B
C++
29 lines
720 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_BITMAPMEDIANFILTER_HXX
|
|
#define INCLUDED_VCL_BITMAPMEDIANFILTER_HXX
|
|
|
|
#include <vcl/BitmapFilter.hxx>
|
|
|
|
class BitmapEx;
|
|
|
|
class VCL_DLLPUBLIC BitmapMedianFilter : public BitmapFilter
|
|
{
|
|
public:
|
|
BitmapMedianFilter() {}
|
|
|
|
virtual BitmapEx execute(BitmapEx const& rBitmapEx) const override;
|
|
};
|
|
|
|
#endif
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|