aboutsummaryrefslogtreecommitdiff
path: root/jobs/generated/profile.h
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2018-02-03 19:17:10 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2018-02-03 19:17:10 +0900
commit23dc9a3259108f8e0c55e535b9341042f1ff77f5 (patch)
tree59e6c68b14fc73f0aab6d72807ce85ec241947d8 /jobs/generated/profile.h
parente000929c0b06752703056b890ff0b5a4deae1c6a (diff)
downloadlibquotient-23dc9a3259108f8e0c55e535b9341042f1ff77f5.tar.gz
libquotient-23dc9a3259108f8e0c55e535b9341042f1ff77f5.zip
jobs/generated: Generate job-specific makeRequestUrl() methods
Diffstat (limited to 'jobs/generated/profile.h')
-rw-r--r--jobs/generated/profile.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/jobs/generated/profile.h b/jobs/generated/profile.h
index 1e09791d..024130f5 100644
--- a/jobs/generated/profile.h
+++ b/jobs/generated/profile.h
@@ -21,6 +21,13 @@ namespace QMatrixClient
class GetDisplayNameJob : public BaseJob
{
public:
+ /** Construct a URL out of baseUrl and usual parameters passed to
+ * GetDisplayNameJob. This function can be used when
+ * a URL for GetDisplayNameJob is necessary but the job
+ * itself isn't.
+ */
+ static QUrl makeRequestUrl(QUrl baseUrl, const QString& userId);
+
explicit GetDisplayNameJob(const QString& userId);
~GetDisplayNameJob() override;
@@ -43,6 +50,13 @@ namespace QMatrixClient
class GetAvatarUrlJob : public BaseJob
{
public:
+ /** Construct a URL out of baseUrl and usual parameters passed to
+ * GetAvatarUrlJob. This function can be used when
+ * a URL for GetAvatarUrlJob is necessary but the job
+ * itself isn't.
+ */
+ static QUrl makeRequestUrl(QUrl baseUrl, const QString& userId);
+
explicit GetAvatarUrlJob(const QString& userId);
~GetAvatarUrlJob() override;
@@ -59,6 +73,13 @@ namespace QMatrixClient
class GetUserProfileJob : public BaseJob
{
public:
+ /** Construct a URL out of baseUrl and usual parameters passed to
+ * GetUserProfileJob. This function can be used when
+ * a URL for GetUserProfileJob is necessary but the job
+ * itself isn't.
+ */
+ static QUrl makeRequestUrl(QUrl baseUrl, const QString& userId);
+
explicit GetUserProfileJob(const QString& userId);
~GetUserProfileJob() override;