v2.0.0
Loading...
Searching...
No Matches
mne_mgh_tag.h
Go to the documentation of this file.
1//=============================================================================================================
35
36#ifndef MNEMGHTAG_H
37#define MNEMGHTAG_H
38
39//=============================================================================================================
40// INCLUDES
41//=============================================================================================================
42
43#include "mne_global.h"
44
45//=============================================================================================================
46// QT INCLUDES
47//=============================================================================================================
48
49#include <QByteArray>
50#include <QSharedPointer>
51
52//=============================================================================================================
53// DEFINE NAMESPACE MNELIB
54//=============================================================================================================
55
56namespace MNELIB
57{
58
59//=============================================================================================================
67{
68public:
69 typedef QSharedPointer<MNEMghTag> SPtr;
70 typedef QSharedPointer<const MNEMghTag> ConstSPtr;
71
72 //=========================================================================================================
76 MNEMghTag() = default;
77
78 //=========================================================================================================
82 ~MNEMghTag() = default;
83
84public:
85 int tag = 0;
86 long long len = 0;
87 QByteArray data;
88};
89
90//=============================================================================================================
91// INLINE DEFINITIONS
92//=============================================================================================================
93} // NAMESPACE MNELIB
94
95#endif // MNEMGHTAG_H
mne library export/import macros.
#define MNESHARED_EXPORT
Definition mne_global.h:52
Core MNE data structures (source spaces, source estimates, hemispheres).
QSharedPointer< const MNEMghTag > ConstSPtr
Definition mne_mgh_tag.h:70
~MNEMghTag()=default
QByteArray data
Definition mne_mgh_tag.h:87
MNEMghTag()=default
QSharedPointer< MNEMghTag > SPtr
Definition mne_mgh_tag.h:69