Patronum
iservice.h
Go to the documentation of this file.
1 #ifndef ISERVICE_H
2 #define ISERVICE_H
3 
4 #include <QList>
5 
6 namespace Patronum {
7 
8 class Feature;
9 
10 class IService
11 {
12 public:
13  IService();
14 
15  virtual void handleReceve(const QList<Feature>& data) = 0;
16  virtual QList<Feature> supportedFeatures() = 0;
17 
18 };
19 }
20 #endif // ISERVICE_H
virtual void handleReceve(const QList< Feature > &data)=0
virtual QList< Feature > supportedFeatures()=0