MNE-CPP  beta 1.0
fiff_dir_entry.cpp
Go to the documentation of this file.
1 //=============================================================================================================
36 //*************************************************************************************************************
37 //=============================================================================================================
38 // INCLUDES
39 //=============================================================================================================
40 
41 #include "fiff_dir_entry.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 : kind(-1)
59 , type(-1)
60 , size(-1)
61 , pos(-1)
62 {
63 
64 }
65 
66 
67 //*************************************************************************************************************
68 
70 : kind(p_FiffDirEntry.kind)
71 , type(p_FiffDirEntry.type)
72 , size(p_FiffDirEntry.size)
73 , pos(p_FiffDirEntry.pos)
74 {
75 
76 }
77 
78 
79 //*************************************************************************************************************
80 
82 {
83 
84 }
FiffDirEntry class declaration.
Directory entry description.
~FiffDirEntry()
Definition: fiff.h:98
FiffDirEntry()