MNE-CPP  beta 1.0
mne_corsourceestimate.cpp
Go to the documentation of this file.
1 //=============================================================================================================
36 //*************************************************************************************************************
37 //=============================================================================================================
38 // INCLUDES
39 //=============================================================================================================
40 
41 #include "mne_corsourceestimate.h"
42 
43 #include <QFile>
44 #include <QDataStream>
45 #include <QSharedPointer>
46 
47 
48 //*************************************************************************************************************
49 //=============================================================================================================
50 // USED NAMESPACES
51 //=============================================================================================================
52 
53 using namespace MNELIB;
54 
55 
56 //*************************************************************************************************************
57 //=============================================================================================================
58 // DEFINE MEMBER METHODS
59 //=============================================================================================================
60 
63 {
64 }
65 
66 
67 //*************************************************************************************************************
68 
69 MNECorSourceEstimate::MNECorSourceEstimate(const MatrixXd &p_sol, const VectorXi &p_vertices, float p_tmin, float p_tstep)
70 : MNESourceEstimate(p_sol, p_vertices, p_tmin, p_tstep)
71 {
72 }
73 
74 
75 //*************************************************************************************************************
76 
78 : MNESourceEstimate(p_SourceEstimate)
79 {
80 
81 }
82 
83 
84 //*************************************************************************************************************
85 
87 : MNESourceEstimate(p_IODevice)
88 {
89 }
90 
91 
92 //*************************************************************************************************************
93 
95 {
97 
98 }
99 
100 
101 //*************************************************************************************************************
102 
103 bool MNECorSourceEstimate::read(QIODevice &p_IODevice, MNECorSourceEstimate& p_stc)
104 {
105  return MNESourceEstimate::read(p_IODevice, p_stc);
106 }
107 
108 
109 //*************************************************************************************************************
110 
111 bool MNECorSourceEstimate::write(QIODevice &p_IODevice)
112 {
113  return MNESourceEstimate::write(p_IODevice);
114 }
115 
116 
117 //*************************************************************************************************************
118 
120 {
121  if (this != &rhs) // protect against invalid self-assignment
122  {
124  }
125  // to support chained assignment operators (a=b=c), always return *this
126  return *this;
127 }
MNECorSourceEstimate class declaration.
MNESourceEstimate & operator=(const MNESourceEstimate &rhs)
bool write(QIODevice &p_IODevice)
Correlated source estimation.
static bool read(QIODevice &p_IODevice, MNECorSourceEstimate &p_stc)
bool write(QIODevice &p_IODevice)
MNECorSourceEstimate & operator=(const MNECorSourceEstimate &rhs)
static bool read(QIODevice &p_IODevice, MNESourceEstimate &p_stc)