/usr/include/paraview/vtkxdmf2/XdmfExport.h is in paraview-dev 4.0.1-1ubuntu1.
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 | #ifndef __xdmf_export_h
#define __xdmf_export_h
#include "XdmfConfig.h"
#if defined(_WIN32) && !defined(WIN32)
# define WIN32
#endif
#if defined(WIN32) && !defined(XDMFSTATIC)
# if defined(Xdmf_EXPORTS)
# define XDMF_EXPORT __declspec( dllexport )
# else
# define XDMF_EXPORT __declspec( dllimport )
# endif
#else
# define XDMF_EXPORT
#endif
#endif
|