v2.0.0
Loading...
Searching...
No Matches
mne_mgh_tag.h
Go to the documentation of this file.
1//=============================================================================================================
17
18#ifndef MNEMGHTAG_H
19#define MNEMGHTAG_H
20
21//=============================================================================================================
22// INCLUDES
23//=============================================================================================================
24
25#include "mne_global.h"
26
27//=============================================================================================================
28// QT INCLUDES
29//=============================================================================================================
30
31#include <QByteArray>
32#include <QSharedPointer>
33
34//=============================================================================================================
35// DEFINE NAMESPACE MNELIB
36//=============================================================================================================
37
38namespace MNELIB
39{
40
41//=============================================================================================================
49{
50public:
51 typedef QSharedPointer<MNEMghTag> SPtr;
52 typedef QSharedPointer<const MNEMghTag> ConstSPtr;
53
54 //=========================================================================================================
58 MNEMghTag() = default;
59
60 //=========================================================================================================
64 ~MNEMghTag() = default;
65
66public:
67 int tag = 0;
68 long long len = 0;
69 QByteArray data;
70};
71
72//=============================================================================================================
73// INLINE DEFINITIONS
74//=============================================================================================================
75} // NAMESPACE MNELIB
76
77#endif // MNEMGHTAG_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).
QSharedPointer< const MNEMghTag > ConstSPtr
Definition mne_mgh_tag.h:52
~MNEMghTag()=default
QByteArray data
Definition mne_mgh_tag.h:69
MNEMghTag()=default
QSharedPointer< MNEMghTag > SPtr
Definition mne_mgh_tag.h:51