Advertisement
Guest User

Untitled

a guest
Jan 18th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. class RequestCanceler : public QObject
  2. {
  3. Q_OBJECT
  4. public:
  5. RequestCanceler(QObject *parent = nullptr);
  6.  
  7. public slots:
  8. virtual void cancelRequest()
  9. {
  10. qDebug() << Q_FUNC_INFO << this;
  11. //SailreadsManager::Instance(this)->abortRequest(this);
  12. }
  13. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement