Guest User

Untitled

a guest
Jan 4th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. #ifndef SCHEMAHANDLER_H
  3. #define SCHEMAHANDLER_H
  4.  
  5. #include <QObject>
  6. #include <QNetworkReply>
  7.  
  8. class SchemaHandler : public QObject
  9. {
  10.     Q_OBJECT
  11.  
  12. public:
  13.     SchemaHandler(QObject *parent);
  14.  
  15. public:
  16.     virtual QNetworkReply handleRequest(QUrl url);
  17. };
  18.  
  19. #endif // SCHEMAHANDLER_H
Add Comment
Please, Sign In to add comment