update credits
[LibreOffice.git] / svx / source / svdraw / svdconv.hxx
blobfb7020a96443798e3216e28d5a6fbc6748badbab
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 _SVDCONV_HXX
11 #define _SVDCONV_HXX
13 template<typename T> inline T ImplMMToTwips(T val);
14 template<>
15 inline double ImplMMToTwips(double fVal) { return (fVal * (72.0 / 127.0)); }
16 template<>
17 inline sal_Int32 ImplMMToTwips(sal_Int32 nVal) { return ((nVal * 72 + 63) / 127); }
18 template<>
19 inline sal_Int64 ImplMMToTwips(sal_Int64 nVal) { return ((nVal * 72 + 63) / 127); }
21 template<typename T> inline T ImplTwipsToMM(T val);
22 template<>
23 inline double ImplTwipsToMM(double fVal) { return (fVal * (127.0 / 72.0)); }
24 template<>
25 inline sal_Int32 ImplTwipsToMM(sal_Int32 nVal) { return ((nVal * 127 + 36) / 72); }
26 template<>
27 inline sal_Int64 ImplTwipsToMM(sal_Int64 nVal) { return ((nVal * 127 + 36) / 72); }
29 #endif // _SVDCONV_HXX
31 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */