/usr/include/qwtplot3d/qwt3d_global.h is in libqwtplot3d-qt5-dev 0.2.7+svn191-10.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | #ifndef QWT3D_GLOBAL_H
#define QWT3D_GLOBAL_H
#include <qglobal.h>
#if QT_VERSION < 0x040000
#include <qmodules.h>
#endif
#define QWT3D_MAJOR_VERSION 0
#define QWT3D_MINOR_VERSION 2
#define QWT3D_PATCH_VERSION 6
//
// Create Qwt3d DLL if QWT3D_DLL is defined (Windows only)
//
#if defined(Q_WS_WIN)
#if defined(_MSC_VER) /* MSVC Compiler */
#pragma warning(disable: 4251) // dll interface required for stl templates
//pragma warning(disable: 4244) // 'conversion' conversion from 'type1' to 'type2', possible loss of data
#pragma warning(disable: 4786) // truncating debug info after 255 characters
#pragma warning(disable: 4660) // template-class specialization 'identifier' is already instantiated
#if (_MSC_VER >= 1400) /* VS8 - not sure about VC7 */
#pragma warning(disable: 4996) /* MS security enhancements */
#endif
#endif
#if defined(QWT3D_NODLL)
#undef QWT3D_MAKEDLL
#undef QWT3D_DLL
#undef QWT3D_TEMPLATEDLL
#endif
#ifdef QWT3D_DLL
#if defined(QWT3D_MAKEDLL) /* create a Qwt3d DLL library */
#undef QWT3D_DLL
#define QWT3D_EXPORT __declspec(dllexport)
#define QWT3D_TEMPLATEDLL
#endif
#endif
#if defined(QWT3D_DLL) /* use a Qwt3d DLL library */
#define QWT3D_EXPORT __declspec(dllimport)
#define QWT3D_TEMPLATEDLL
#endif
#else // ! Q_WS_WIN
#undef QWT3D_MAKEDLL /* ignore these for other platforms */
#undef QWT3D_DLL
#undef QWT3D_TEMPLATEDLL
#endif
#ifndef QWT3D_EXPORT
#define QWT3D_EXPORT
#endif
#endif
|