MNE-CPP  beta 1.0
dipole.cpp
Go to the documentation of this file.
1 //=============================================================================================================
21 #ifndef DIPOLE_SOURCES //Because this cpp is part of the header -> template
22 #define DIPOLE_SOURCES
23 
24 //*************************************************************************************************************
25 //=============================================================================================================
26 // INCLUDES
27 //=============================================================================================================
28 
29 #include "dipole.h"
30 
31 
32 //*************************************************************************************************************
33 //=============================================================================================================
34 // STL INCLUDES
35 //=============================================================================================================
36 
37 
38 //*************************************************************************************************************
39 //=============================================================================================================
40 // DEFINE NAMESPACE INVERSELIB
41 //=============================================================================================================
42 
43 namespace INVERSELIB
44 {
45 
46 
47 //*************************************************************************************************************
48 //=============================================================================================================
49 // USED NAMESPACES
50 //=============================================================================================================
51 
52 
53 //*************************************************************************************************************
54 //=============================================================================================================
55 // DEFINE MEMBER METHODS
56 //=============================================================================================================
57 
58 template <class T>
60 : m_vecPosition(Matrix<T, 3, 1>::Zero(3))
61 , m_vecDirection(Matrix<T, 3, 1>::Zero(3))
62 , m_dLength(1)
63 , m_dFrequency(0)
64 {
65 
66 }
67 
68 
69 //*************************************************************************************************************
70 
71 template <class T>
73 {
74 
75 }
76 
77 
78 }//Namespace
79 
80 #endif //DIPOLE_SOURCES
ToDo Documentation...
virtual ~Dipole()
Definition: dipole.cpp:72