Object Detection  5.0
Image Processing Using Qt and Opencv
observerimpl.h
1 #ifndef OBSERVERIMPL_H
2 #define OBSERVERIMPL_H
3 
4 #include <observer.h>
5 #include "QDebug"
6 using namespace Devices;
7 class ObserverImpl : public Observer
8 {
9 public:
10  ObserverImpl(QObject *parent);
11  ObserverImpl(const ObserverImpl&) = default;
12  // Observer interface
13 public slots:
14  virtual void onNotified(const ObservableData &dt) override;
15 
16 };
17 
18 
19 #endif // OBSERVERIMPL_H