MNE-CPP  beta 1.0
mne_epoch_data.cpp
Go to the documentation of this file.
1 //=============================================================================================================
36 //*************************************************************************************************************
37 //=============================================================================================================
38 // INCLUDES
39 //=============================================================================================================
40 
41 #include "mne_epoch_data.h"
42 
43 
44 //*************************************************************************************************************
45 //=============================================================================================================
46 // USED NAMESPACES
47 //=============================================================================================================
48 
49 using namespace MNELIB;
50 
51 
52 //*************************************************************************************************************
53 //=============================================================================================================
54 // DEFINE MEMBER METHODS
55 //=============================================================================================================
56 
58 : event(-1)
59 , tmin(-1)
60 , tmax(-1)
61 {
62 
63 }
64 
65 
66 //*************************************************************************************************************
67 
69 : epoch(p_MNEEpochData.epoch)
70 , event(p_MNEEpochData.event)
71 , tmin(p_MNEEpochData.tmin)
72 , tmax(p_MNEEpochData.tmax)
73 {
74 
75 }
76 
77 //*************************************************************************************************************
78 
80 {
81 
82 }
MNEEpochData class declaration.