MNE-CPP  beta 0.1
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
measurement.cpp
Go to the documentation of this file.
1 //=============================================================================================================
36 //*************************************************************************************************************
37 //=============================================================================================================
38 // INCLUDES
39 //=============================================================================================================
40 
41 #include "measurement.h"
43 
44 
45 //*************************************************************************************************************
46 //=============================================================================================================
47 // USED NAMESPACES
48 //=============================================================================================================
49 
50 using namespace XMEASLIB;
51 
52 
53 //*************************************************************************************************************
54 //=============================================================================================================
55 // DEFINE MEMBER METHODS
56 //=============================================================================================================
57 
59 : Subject()
60 , m_qString_Name("")
61 , m_bVisibility(true)
62 {
63 
64 }
65 
66 
67 //*************************************************************************************************************
68 
70 {
71 
72 }
73 
74 
76 
77 //bool Measurement::isSingleChannel()
78 //{
79 // MltChnMeasurement* pSngChnMeasurement = NULL;
80 // pSngChnMeasurement = dynamic_cast<MltChnMeasurement*>(this);
81 
82 // if(pSngChnMeasurement == NULL)
83 // return false;
84 // else
85 // return true;
86 //}
Contains declarations of the observer design pattern: Subject class and IObserver interface...
Contains the declaration of the Measurement base class.
The Subject class provides the base class of every subject of the observer design pattern...