v2.0.0
Loading...
Searching...
No Matches
mne_sparse_named_matrix.h
Go to the documentation of this file.
1#ifndef MNE_SPARSE_NAMED_MATRIX_H
2#define MNE_SPARSE_NAMED_MATRIX_H
3
4//=============================================================================================================
5// INCLUDES
6//=============================================================================================================
7
8#include "mne_global.h"
9
11
12#include <QStringList>
13
14#include <memory>
15
16//=============================================================================================================
17// DEFINE NAMESPACE MNELIB
18//=============================================================================================================
19
20namespace MNELIB
21{
22
27{
28public:
31
32 int nrow = 0;
33 int ncol = 0;
34 QStringList rowlist;
35 QStringList collist;
36 std::unique_ptr<FIFFLIB::FiffSparseMatrix> data;
37};
38
39} // namespace MNELIB
40
41#endif // MNE_SPARSE_NAMED_MATRIX_H
FiffSparseMatrix class declaration.
mne library export/import macros.
#define MNESHARED_EXPORT
Definition mne_global.h:52
Core MNE data structures (source spaces, source estimates, hemispheres).
std::unique_ptr< FIFFLIB::FiffSparseMatrix > data