LCOV - code coverage report
Current view: top level - svx/source/svdraw - svdconv.hxx (source / functions) Hit Total Coverage
Test: commit 0e63ca4fde4e446f346e35849c756a30ca294aab Lines: 2 2 100.0 %
Date: 2014-04-11 Functions: 2 2 100.0 %
Legend: Lines: hit not hit

          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        4036 : 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        5368 : 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: */

Generated by: LCOV version 1.10