bump product version to 4.1.6.2
[LibreOffice.git] / include / basegfx / tools / unotools.hxx
blobc95eb5361f5c65a85e23aaa30a31e76e917eb501
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_UNOTOOLS_HXX
11 #define INCLUDED_BASEGFX_UNOTOOLS_HXX
13 #include <cppuhelper/basemutex.hxx>
14 #include <cppuhelper/compbase3.hxx>
15 #include <com/sun/star/drawing/PolyPolygonBezierCoords.hpp>
16 #include <com/sun/star/lang/XServiceInfo.hpp>
17 #include <com/sun/star/rendering/FillRule.hpp>
18 #include <com/sun/star/rendering/XLinePolyPolygon2D.hpp>
19 #include <com/sun/star/rendering/XBezierPolyPolygon2D.hpp>
20 #include <basegfx/polygon/b2dpolypolygon.hxx>
23 namespace basegfx
25 class B2DPolyPolygon;
27 namespace unotools
30 BASEGFX_DLLPUBLIC B2DPolyPolygon polyPolygonBezierToB2DPolyPolygon(const ::com::sun::star::drawing::PolyPolygonBezierCoords& rSourcePolyPolygon)
31 throw( ::com::sun::star::lang::IllegalArgumentException );
33 BASEGFX_DLLPUBLIC void b2DPolyPolygonToPolyPolygonBezier( const B2DPolyPolygon& rPolyPoly,
34 ::com::sun::star::drawing::PolyPolygonBezierCoords& rRetval );
38 #endif /* INCLUDED_BASEGFX_UNOTOOLS_HXX */
40 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */