Marble

MathHelper.h
1 /*
2  SPDX-FileCopyrightText: 2008 Torsten Rahn <[email protected]>
3 
4  SPDX-License-Identifier: LGPL-2.0-or-later
5 */
6 
7 #ifndef MATHHELPER_H
8 #define MATHHELPER_H
9 
10 #include <qglobal.h>
11 
12 #ifdef Q_CC_MSVC
13 #include <math.h>
14 
15 qreal msvc_asinh(qreal x);
16 #define asinh msvc_asinh
17 
18 qreal msvc_atanh(qreal x);
19 #define atanh msvc_atanh
20 #endif
21 
22 #endif // MATHHELPER_H
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Thu Sep 21 2023 04:12:27 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.