MNE-CPP  0.1.9
A Framework for Electrophysiology
fiff_dir_entry.cpp
Go to the documentation of this file.
1 //=============================================================================================================
37 //=============================================================================================================
38 // INCLUDES
39 //=============================================================================================================
40 
41 #include "fiff_dir_entry.h"
42 
43 //=============================================================================================================
44 // USED NAMESPACES
45 //=============================================================================================================
46 
47 using namespace FIFFLIB;
48 
49 //=============================================================================================================
50 // DEFINE MEMBER METHODS
51 //=============================================================================================================
52 
54 : kind(-1)
55 , type(-1)
56 , size(-1)
57 , pos(-1)
58 {
59 }
60 
61 //=============================================================================================================
62 
64 : kind(p_FiffDirEntry.kind)
65 , type(p_FiffDirEntry.type)
66 , size(p_FiffDirEntry.size)
67 , pos(p_FiffDirEntry.pos)
68 {
69 }
70 
71 //=============================================================================================================
72 
74 {
75 }
FIFFLIB::FiffDirEntry::~FiffDirEntry
~FiffDirEntry()
Definition: fiff_dir_entry.cpp:73
FIFFLIB::FiffDirEntry
Directory entry description.
Definition: fiff_dir_entry.h:67
fiff_dir_entry.h
FiffDirEntry class declaration.
FIFFLIB::FiffDirEntry::FiffDirEntry
FiffDirEntry()
Definition: fiff_dir_entry.cpp:53