MNE-CPP 0.1.9
A Framework for Electrophysiology
Loading...
Searching...
No Matches
events_global.h
Go to the documentation of this file.
1//=============================================================================================================
35#ifndef EVENTS_GLOBAL_H
36#define EVENTS_GLOBAL_H
37
38#include <QtCore/qglobal.h>
39#include <utils/buildinfo.h>
40
41#if defined(STATICBUILD)
42# define EVENTS_EXPORT
43#elif defined(MNE_EVENTS_LIBRARY)
44# define EVENTS_EXPORT Q_DECL_EXPORT
45#else
46# define EVENTS_EXPORT Q_DECL_IMPORT
47#endif
48
49namespace EVENTSLIB{
50
51//=============================================================================================================
55EVENTS_EXPORT const char* buildDateTime();
56
57//=============================================================================================================
61EVENTS_EXPORT const char* buildHash();
62
63//=============================================================================================================
67EVENTS_EXPORT const char* buildHashLong();
68}
69
70#endif // EVENTS_GLOBAL_H
build information utils
#define EVENTS_EXPORT