MNE-CPP
0.1.9
A Framework for Electrophysiology
Namespaces
Namespace List
API Reference
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
~
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
~
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Typedefs
c
i
m
n
p
s
t
v
Properties
Related Functions
Files
File List
File Members
All
c
d
e
f
i
k
m
n
q
r
u
Functions
Variables
Macros
c
d
e
f
i
m
n
r
u
About
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Properties
Friends
Macros
Pages
src
libraries
disp
viewers
helpers
mneoperator.cpp
Go to the documentation of this file.
1
//=============================================================================================================
36
//=============================================================================================================
37
// INCLUDES
38
//=============================================================================================================
39
40
#include "
mneoperator.h
"
41
42
//=============================================================================================================
43
// USED NAMESPACES
44
//=============================================================================================================
45
46
using namespace
DISPLIB;
47
48
//=============================================================================================================
49
// DEFINE MEMBER METHODS
50
//=============================================================================================================
51
52
MNEOperator::MNEOperator()
53
: m_OperatorType(UNKNOWN)
54
, m_sName(
"unknown"
)
55
{
56
}
57
58
//=============================================================================================================
59
60
MNEOperator::MNEOperator(
const
MNEOperator
& obj)
61
{
62
m_OperatorType = obj.m_OperatorType;
63
m_sName = obj.m_sName;
64
}
65
66
//=============================================================================================================
67
68
MNEOperator::MNEOperator(OperatorType type)
69
: m_OperatorType(type)
70
, m_sName(
"unknown"
)
71
{
72
}
73
74
//=============================================================================================================
75
76
MNEOperator::~MNEOperator
()
77
{
78
}
DISPLIB::MNEOperator::~MNEOperator
virtual ~MNEOperator()
Definition:
mneoperator.cpp:76
DISPLIB::MNEOperator
MNEOperator class represents the base class of an arbitrary MNEOperator, e.g. FILTER,...
Definition:
mneoperator.h:78
mneoperator.h
Declaration of the MNEOperator Class.
Generated on Wed Aug 9 2023 17:55:40 for MNE-CPP by
1.8.17