MNE-CPP  beta 1.0
fiff_evoked_data.cpp
Go to the documentation of this file.
1 //=============================================================================================================
36 //*************************************************************************************************************
37 //=============================================================================================================
38 // INCLUDES
39 //=============================================================================================================
40 
41 #include "fiff_evoked_data.h"
42 
43 
44 //*************************************************************************************************************
45 //=============================================================================================================
46 // USED NAMESPACES
47 //=============================================================================================================
48 
49 using namespace FIFFLIB;
50 
51 
52 //*************************************************************************************************************
53 //=============================================================================================================
54 // DEFINE MEMBER METHODS
55 //=============================================================================================================
56 
58 : aspect_kind(-1)
59 , is_smsh(-1)
60 , nave(-1)
61 , first(-1)
62 , last(-1)
63 , comment("")
64 {
65 
66 }
67 
68 
69 //*************************************************************************************************************
70 
72 : QSharedData(p_FiffEvokedData)
73 , aspect_kind(p_FiffEvokedData.aspect_kind)
74 , is_smsh(p_FiffEvokedData.is_smsh)
75 , nave(p_FiffEvokedData.nave)
76 , first(p_FiffEvokedData.first)
77 , last(p_FiffEvokedData.last)
78 , comment(p_FiffEvokedData.comment)
79 , times(p_FiffEvokedData.times)
80 , epochs(p_FiffEvokedData.epochs)
81 {
82 
83 }
84 
85 
86 //*************************************************************************************************************
87 
89 {
90 
91 }
Definition: fiff.h:98
FiffEvokedData class declaration.