Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * Copyright 2012 LibreOffice contributors.
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 _SVDCONV_HXX
11 : #define _SVDCONV_HXX
12 :
13 : template<typename T> inline T ImplMMToTwips(T val);
14 : template<>
15 72 : 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); }
20 :
21 : template<typename T> inline T ImplTwipsToMM(T val);
22 : template<>
23 72 : 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); }
28 :
29 : #endif // _SVDCONV_HXX
30 :
31 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|