MNE-CPP  beta 0.1
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
text.cpp
Go to the documentation of this file.
1 //=============================================================================================================
36 //*************************************************************************************************************
37 //=============================================================================================================
38 // INCLUDES
39 //=============================================================================================================
40 
41 #include "text.h"
42 
43 
44 //*************************************************************************************************************
45 //=============================================================================================================
46 // USED NAMESPACES
47 //=============================================================================================================
48 
49 using namespace XMEASLIB;
50 
51 
52 //*************************************************************************************************************
53 //=============================================================================================================
54 // DEFINE MEMBER METHODS
55 //=============================================================================================================
56 
59 , m_Text("")
60 
61 {
62 
63 }
64 
65 
66 //*************************************************************************************************************
67 
69 {
70 
71 }
72 
73 
74 //*************************************************************************************************************
75 
76 void Text::setText(const QString& text)
77 {
78  m_Text = text;
79  notify();
80 }
Contains the declaration of the Text class.
void setText(const QString &text)
Definition: text.cpp:76
The SngChnMeasurement class is the base class of every SngChnMeasurement.
void notify()
virtual ~Text()
Definition: text.cpp:68