MNE-CPP 0.1.9
A Framework for Electrophysiology
Loading...
Searching...
No Matches
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
46using namespace DISPLIB;
47
48//=============================================================================================================
49// DEFINE MEMBER METHODS
50//=============================================================================================================
51
52MNEOperator::MNEOperator()
53: m_OperatorType(UNKNOWN)
54, m_sName("unknown")
55{
56}
57
58//=============================================================================================================
59
60MNEOperator::MNEOperator(const MNEOperator& obj)
61{
62 m_OperatorType = obj.m_OperatorType;
63 m_sName = obj.m_sName;
64}
65
66//=============================================================================================================
67
68MNEOperator::MNEOperator(OperatorType type)
69: m_OperatorType(type)
70, m_sName("unknown")
71{
72}
73
74//=============================================================================================================
75
Declaration of the MNEOperator Class.
MNEOperator class represents the base class of an arbitrary MNEOperator, e.g. FILTER,...
Definition mneoperator.h:79