v2.0.0
Loading...
Searching...
No Matches
src
libraries
disp
viewers
helpers
mneoperator.cpp
Go to the documentation of this file.
1
//=============================================================================================================
35
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
}
mneoperator.h
Declaration of the MNEOperator Class.
DISPLIB
2-D display widgets and visualisation helpers (charts, topography, colour maps).
DISPLIB::MNEOperator::OperatorType
OperatorType
Definition
mneoperator.h:85
DISPLIB::MNEOperator::UNKNOWN
@ UNKNOWN
Definition
mneoperator.h:89
DISPLIB::MNEOperator::~MNEOperator
virtual ~MNEOperator()
Definition
mneoperator.cpp:76
DISPLIB::MNEOperator::MNEOperator
MNEOperator()
Definition
mneoperator.cpp:52
DISPLIB::MNEOperator::m_OperatorType
enum DISPLIB::MNEOperator::OperatorType m_OperatorType
DISPLIB::MNEOperator::m_sName
QString m_sName
Definition
mneoperator.h:104
Generated on
for MNE-CPP by
1.16.1