MNE-CPP  beta 1.0
mneoperator.h
Go to the documentation of this file.
1 //=============================================================================================================
37 #ifndef MNEOPERATOR_H
38 #define MNEOPERATOR_H
39 
40 //*************************************************************************************************************
41 //=============================================================================================================
42 // Qt INCLUDES
43 //=============================================================================================================
44 
45 #include <QObject>
46 
47 
48 //*************************************************************************************************************
49 //=============================================================================================================
50 // MNE INCLUDES
51 //=============================================================================================================
52 
53 #include <fiff/fiff.h>
54 
55 
56 //*************************************************************************************************************
57 //=============================================================================================================
58 // DEFINE NAMESPACE MNEBrowseRawQt
59 //=============================================================================================================
60 
61 namespace MNEBrowseRawQt
62 {
63 
64 //=============================================================================================================
69 {
70 public:
71  enum OperatorType {
72  FILTER,
73  PCA,
74  AVERAGE,
75  UNKNOWN
76  } m_OperatorType;
77 
78  MNEOperator();
79 
80  MNEOperator(const MNEOperator& obj);
81 
82  MNEOperator(OperatorType type);
83 
84  ~MNEOperator();
85 
86  QString m_sName;
87 };
88 
89 } // NAMESPACE
90 
91 #endif // MNEOPERATOR_H
FIFF class declaration, which provides static wrapper functions to stay consistent with mne matlab to...