MNE-CPP  beta 1.0
fiff_dig_point.cpp
Go to the documentation of this file.
1 //=============================================================================================================
36 //*************************************************************************************************************
37 //=============================================================================================================
38 // INCLUDES
39 //=============================================================================================================
40 
41 #include "fiff_dig_point.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 , ident(-1)
60 , coord_frame(-1)
61 {
62  for(qint32 i = 0; i < 3; ++i)
63  r[i] = -1;
64 }
65 
66 
67 //*************************************************************************************************************
68 
70 : kind(p_FiffDigPoint.kind)
71 , ident(p_FiffDigPoint.ident)
72 , coord_frame(p_FiffDigPoint.coord_frame)
73 {
74  for(qint32 i = 0; i < 3; ++i)
75  r[i] = p_FiffDigPoint.r[i];
76 }
77 
78 
79 //*************************************************************************************************************
80 
82 {
83 
84 }
Digitization point description.
Definition: fiff.h:98
FiffDigPoint class declaration.