Files
libreoffice/include/vcl/BitmapFilter.hxx
Chris Sherlock 6631cc5545 vcl: migrated BitmapProcessor and scale classes to BitmapFilterEx classes
Change-Id: I0530824cdefb3c714d2664988f887d123e471840
Reviewed-on: https://gerrit.libreoffice.org/52898
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2018-04-16 03:19:23 +02:00

30 lines
744 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_INC_BITMAPFILTER_HXX
#define INCLUDED_VCL_INC_BITMAPFILTER_HXX
#include <vcl/bitmapex.hxx>
class VCL_DLLPUBLIC BitmapFilter
{
public:
BitmapFilter();
virtual ~BitmapFilter();
virtual BitmapEx execute(BitmapEx const& rBitmapEx) = 0;
static bool Filter(BitmapEx& rBmpEx, BitmapFilter&& rFilter);
};
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */