MNE-CPP
beta 1.0
Main Page
Related Pages
Modules
Classes
Files
File List
File Members
applications
mne_x
plugins
neuromag
directrecord.cpp
1
#include "
directrecord.h
"
2
3
DirectRecord::DirectRecord()
4
{
5
}
6
7
8
9
//*************************************************************************************************************
10
11
bool
DirectRecord::start()
12
{
13
14
// Start threads
15
QThread::start();
16
17
return
true
;
18
}
19
20
21
//*************************************************************************************************************
22
23
bool
DirectRecord::stop()
24
{
25
// Stop threads
26
QThread::terminate();
27
QThread::wait();
28
29
//Clear Buffers
30
31
return
true
;
32
}
33
34
35
//*************************************************************************************************************
36
37
void
DirectRecord::run()
38
{
39
while
(
true
)
40
{
41
42
}
43
}
directrecord.h
Contains the declaration of the DirectRecord class.
Generated on Fri Mar 27 2015 22:54:27 for MNE-CPP by
1.8.9.1