aboutsummaryrefslogtreecommitdiff
path: root/jobs/generated/kicking.h
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2017-10-02 12:16:36 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2017-10-02 12:20:33 +0900
commitb2c9daabc2e8b89e1108211d8c9badf1bac66640 (patch)
treef2a7ba70eacc8c69e2741ae1af47eeb5887bb396 /jobs/generated/kicking.h
parentb469f1c9ab7603a297b1c0082d804312cabbd550 (diff)
downloadlibquotient-b2c9daabc2e8b89e1108211d8c9badf1bac66640.tar.gz
libquotient-b2c9daabc2e8b89e1108211d8c9badf1bac66640.zip
All jobs: Drop ConnectionData parameter from the constructor
Having to pass ConnectionData to each and every job class was nothing but boilerplate since the very beginning. Removing it required to prepend BaseJob::start() with ConnectionData-setting code, and to provide a way to alter the request configuration depending on the (late-coming) ConnectionData object. This is a new responsibility of BaseJob::start(); the previous BaseJob::start() contents have moved to BaseJob::sendRequest() (which is now invoked on retries, instead of start()).
Diffstat (limited to 'jobs/generated/kicking.h')
-rw-r--r--jobs/generated/kicking.h12
1 files changed, 1 insertions, 11 deletions
diff --git a/jobs/generated/kicking.h b/jobs/generated/kicking.h
index 7b183b08..a746db8b 100644
--- a/jobs/generated/kicking.h
+++ b/jobs/generated/kicking.h
@@ -27,17 +27,7 @@ namespace QMatrixClient
class KickJob : public BaseJob
{
public:
- KickJob(const ConnectionData* connection
-
- ,
- QString roomId
-
- ,
- QString user_id
-
- ,
- QString reason
- );
+ KickJob(QString roomId, QString user_id, QString reason);
};