Object Detection  5.0
Image Processing Using Qt and Opencv
observabledata.cpp
1 #include "observabledata.h"
2 using namespace Devices;
3 ObservableData::ObservableData(QObject *parent) : QObject(parent)
4 {
5 
6 }
7 
8 QString ObservableData::getData() const
9 {
10  return data;
11 }
12 
13 void ObservableData::setData(const QString &value)
14 {
15  data = value;
16 }