v2.0.0
Loading...
Searching...
No Matches
mneoperator.h
Go to the documentation of this file.
1//=============================================================================================================
20
21#ifndef MNEOPERATOR_H
22#define MNEOPERATOR_H
23
24//=============================================================================================================
25// INCLUDES
26//=============================================================================================================
27
28#include "../../disp_global.h"
29
30//=============================================================================================================
31// QT INCLUDES
32//=============================================================================================================
33
34#include <QString>
35#include <QSharedPointer>
36
37//=============================================================================================================
38// EIGEN INCLUDES
39//=============================================================================================================
40
41//=============================================================================================================
42// FORWARD DECLARATIONS
43//=============================================================================================================
44
45//=============================================================================================================
46// DEFINE NAMESPACE DISPLIB
47//=============================================================================================================
48
49namespace DISPLIB
50{
51
52//=============================================================================================================
53// DISPLIB FORWARD DECLARATIONS
54//=============================================================================================================
55
56//=============================================================================================================
65{
66
67public:
68 typedef QSharedPointer<MNEOperator> SPtr;
69 typedef QSharedPointer<const MNEOperator> ConstSPtr;
70
77
79
80 MNEOperator(const MNEOperator& obj);
81
82 MNEOperator(OperatorType type);
83
84 //=========================================================================================================
88 virtual ~MNEOperator();
89
90 QString m_sName;
91};
92} // NAMESPACE DISPLIB
93
94#endif // MNEOPERATOR_H
Export macros and build-info hooks for the DISPLIB shared library.
#define DISPSHARED_EXPORT
Definition disp_global.h:38
2-D display widgets and visualisation helpers (charts, topography, colour maps).
Light-weight wrapper describing one MNE pre-processing operator (FIR / SSP / compensation).
Definition mneoperator.h:65
QSharedPointer< MNEOperator > SPtr
Definition mneoperator.h:68
QSharedPointer< const MNEOperator > ConstSPtr
Definition mneoperator.h:69