diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-12-01 16:02:12 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-12-01 16:02:12 +0100 |
commit | 4f7280e4cc34a284b91473cefcb179f04a1d7a08 (patch) | |
tree | f8ee6b9245974e7144d3e1d31de157a7a89f6200 /include/vcl | |
parent | 6c1e4d46298cf240c2487f29955fe13df53e67f4 (diff) |
BitmapFilter, BitmapScaleSuper only used within vcl
Change-Id: Ia8a1207a584b599f01c47b658692d3eeae52cb3a
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/bitmapfilter.hxx | 27 | ||||
-rw-r--r-- | include/vcl/bitmapscalesuper.hxx | 41 |
2 files changed, 0 insertions, 68 deletions
diff --git a/include/vcl/bitmapfilter.hxx b/include/vcl/bitmapfilter.hxx deleted file mode 100644 index c23bd7feaa82..000000000000 --- a/include/vcl/bitmapfilter.hxx +++ /dev/null @@ -1,27 +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/. - * - */ - -#ifndef INCLUDED_VCL_BITMAPFILTER_HXX -#define INCLUDED_VCL_BITMAPFILTER_HXX - -#include <vcl/bitmap.hxx> - -class VCL_DLLPUBLIC BitmapFilter -{ -public: - BitmapFilter(); - virtual ~BitmapFilter(); - - virtual bool filter(Bitmap& rBitmap) = 0; -}; - -#endif // INCLUDED_VCL_BITMAPFILTER_HXX - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/include/vcl/bitmapscalesuper.hxx b/include/vcl/bitmapscalesuper.hxx deleted file mode 100644 index ad817b5f9590..000000000000 --- a/include/vcl/bitmapscalesuper.hxx +++ /dev/null @@ -1,41 +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/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ - -#ifndef INCLUDED_VCL_BITMAPSCALESUPER_HXX -#define INCLUDED_VCL_BITMAPSCALESUPER_HXX - -#include <vcl/bitmapfilter.hxx> - -class VCL_DLLPUBLIC BitmapScaleSuper : public BitmapFilter -{ -public: - BitmapScaleSuper(const double& rScaleX, const double& rScaleY); - virtual ~BitmapScaleSuper() override; - - virtual bool filter(Bitmap& rBitmap) override; - -private: - double mrScaleX; - double mrScaleY; - -}; - -#endif // INCLUDED_VCL_BITMAPSCALESUPER_HXX - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |