mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-13 16:18:42 +00:00
.. Makes it easier to identify code that has been snaffled in from other repositories and check licensing .. The httpserver is now no longer optional, since it is delivered as contributed source.
32 lines
662 B
C
32 lines
662 B
C
/**
|
|
@file
|
|
@author Stefan Frings
|
|
*/
|
|
|
|
#ifndef HTTPGLOBAL_H
|
|
#define HTTPGLOBAL_H
|
|
|
|
#include <QtGlobal>
|
|
|
|
// This is specific to Windows dll's
|
|
#if defined(Q_OS_WIN)
|
|
#if defined(QTWEBAPPLIB_EXPORT)
|
|
#define DECLSPEC Q_DECL_EXPORT
|
|
#elif defined(QTWEBAPPLIB_IMPORT)
|
|
#define DECLSPEC Q_DECL_IMPORT
|
|
#endif
|
|
#endif
|
|
#if !defined(DECLSPEC)
|
|
#define DECLSPEC
|
|
#endif
|
|
|
|
/** Get the library version number */
|
|
DECLSPEC const char* getQtWebAppLibVersion();
|
|
|
|
/** wDebug() uses QT QMessageLogger but as info to log
|
|
rather than interfering with normal qDebug usage **/
|
|
#define wDebug qWarning
|
|
|
|
#endif // HTTPGLOBAL_H
|
|
|