v2.0.0
Loading...
Searching...
No Matches
mne_event.h
Go to the documentation of this file.
1//=============================================================================================================
17
18#ifndef MNE_EVENT_H
19#define MNE_EVENT_H
20
21//=============================================================================================================
22// INCLUDES
23//=============================================================================================================
24
25#include "mne_global.h"
26
27#include <QString>
28
29//=============================================================================================================
30// DEFINE NAMESPACE MNELIB
31//=============================================================================================================
32
33namespace MNELIB
34{
35
36//=============================================================================================================
44{
45public:
46 MNEEvent() = default;
47 ~MNEEvent() = default;
48
49 unsigned int from = 0;
50 unsigned int to = 0;
51 int sample = 0;
52 bool show = false;
53 bool created_here = false;
54 QString comment;
55};
56
57} // namespace MNELIB
58
59#endif // MNE_EVENT_H
MNELIB shared-library export/import macros and library build metadata.
#define MNESHARED_EXPORT
Definition mne_global.h:40
Core MNE data structures (source spaces, source estimates, hemispheres).
MNEEvent()=default
unsigned int to
Definition mne_event.h:50
QString comment
Definition mne_event.h:54
unsigned int from
Definition mne_event.h:49
~MNEEvent()=default