Marble

MathHelper.h
1/*
2 SPDX-FileCopyrightText: 2008 Torsten Rahn <tackat@kde.org>
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
15qreal msvc_asinh(qreal x);
16#define asinh msvc_asinh
17
18qreal 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-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:18:17 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.