Patronum
icontroller.h
Go to the documentation of this file.
1 #ifndef ICONTROLER_H
2 #define ICONTROLER_H
3 
4 #include <QList>
5 #include <QVariantMap>
6 
7 namespace Patronum {
8 
9 class Feature;
10 
12 {
13 public:
14  IController();
15  virtual void handleFeatures(const QList<Feature>& features) = 0;
16  virtual void handleResponce(const QVariantMap& feature) = 0;
17 
18 };
19 }
20 
21 #endif // ICONTROLER_H
virtual void handleFeatures(const QList< Feature > &features)=0
virtual void handleResponce(const QVariantMap &feature)=0