MNE-CPP 0.1.9
A Framework for Electrophysiology
Loading...
Searching...
No Matches
fwd_global.h
Go to the documentation of this file.
1//=============================================================================================================
38#ifndef FWD_GLOBAL_H
39#define FWD_GLOBAL_H
40
41//=============================================================================================================
42// INCLUDES
43//=============================================================================================================
44
45#include <QtCore/qglobal.h>
46#include <utils/buildinfo.h>
47
48//=============================================================================================================
49// DEFINES
50//=============================================================================================================
51
52#if defined(STATICBUILD)
53# define FWDSHARED_EXPORT
54#elif defined(MNE_FWD_LIBRARY)
55# define FWDSHARED_EXPORT Q_DECL_EXPORT
56#else
57# define FWDSHARED_EXPORT Q_DECL_IMPORT
58#endif
59
60namespace FWDLIB{
61
62//=============================================================================================================
66FWDSHARED_EXPORT const char* buildDateTime();
67
68//=============================================================================================================
72FWDSHARED_EXPORT const char* buildHash();
73
74//=============================================================================================================
78FWDSHARED_EXPORT const char* buildHashLong();
79}
80
81#endif // FWD_GLOBAL_H
build information utils
#define FWDSHARED_EXPORT
Definition fwd_global.h:57