Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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 : */
9 :
10 : #ifndef INCLUDED_SVX_SOURCE_SVDRAW_SVDCONV_HXX
11 : #define INCLUDED_SVX_SOURCE_SVDRAW_SVDCONV_HXX
12 :
13 : #include <sal/types.h>
14 :
15 : template<typename T> inline T ImplMMToTwips(T val);
16 : template<>
17 0 : inline double ImplMMToTwips(double fVal) { return (fVal * (72.0 / 127.0)); }
18 : template<>
19 : inline sal_Int32 ImplMMToTwips(sal_Int32 nVal) { return ((nVal * 72 + 63) / 127); }
20 : template<>
21 : inline sal_Int64 ImplMMToTwips(sal_Int64 nVal) { return ((nVal * 72 + 63) / 127); }
22 :
23 : template<typename T> inline T ImplTwipsToMM(T val);
24 : template<>
25 0 : inline double ImplTwipsToMM(double fVal) { return (fVal * (127.0 / 72.0)); }
26 : template<>
27 : inline sal_Int32 ImplTwipsToMM(sal_Int32 nVal) { return ((nVal * 127 + 36) / 72); }
28 : template<>
29 : inline sal_Int64 ImplTwipsToMM(sal_Int64 nVal) { return ((nVal * 127 + 36) / 72); }
30 :
31 : #endif // INCLUDED_SVX_SOURCE_SVDRAW_SVDCONV_HXX
32 :
33 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|