update emoji autocorrect entries from po-files
[LibreOffice.git] / include / basegfx / tools / zoomtools.hxx
blob3b4cacf595537d5e0416cd09bb0bae30ef614382
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 #ifndef INCLUDED_BASEGFX_TOOLS_ZOOMTOOLS_HXX
11 #define INCLUDED_BASEGFX_TOOLS_ZOOMTOOLS_HXX
13 #include <sal/types.h>
14 #include <basegfx/basegfxdllapi.h>
18 namespace basegfx
20 /** This namespace provides functions for optimized geometric zooming
22 namespace zoomtools
24 BASEGFX_DLLPUBLIC long zoomOut(long nCurrent);
25 BASEGFX_DLLPUBLIC long zoomIn(long nCurrent);
29 #endif
31 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */