aboutsummaryrefslogtreecommitdiff
path: root/lib/csapi/typing.h
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2018-06-02 13:32:47 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2018-06-02 13:32:47 +0900
commit0dd491fbd189baaabadcab2344a05e3cf3898287 (patch)
tree13b8ebe63ba8b156ddd6ddab8b0ad2845d7c9c42 /lib/csapi/typing.h
parente7ac6f3480358fd989c8a3090590d665d18e1cec (diff)
downloadlibquotient-0dd491fbd189baaabadcab2344a05e3cf3898287.tar.gz
libquotient-0dd491fbd189baaabadcab2344a05e3cf3898287.zip
csapi: Use Omittable<> container instead of intrusive 'omitted' field
Also: use the latest feature of GTAD, +set/+on, to make gtad.yaml more compact.
Diffstat (limited to 'lib/csapi/typing.h')
-rw-r--r--lib/csapi/typing.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/csapi/typing.h b/lib/csapi/typing.h
index 7cf27ef6..f4fa36e8 100644
--- a/lib/csapi/typing.h
+++ b/lib/csapi/typing.h
@@ -6,6 +6,7 @@
#include "jobs/basejob.h"
+#include "converters.h"
namespace QMatrixClient
{
@@ -14,6 +15,6 @@ namespace QMatrixClient
class SetTypingJob : public BaseJob
{
public:
- explicit SetTypingJob(const QString& userId, const QString& roomId, bool typing, int timeout = {});
+ explicit SetTypingJob(const QString& userId, const QString& roomId, bool typing, Omittable<int> timeout = none);
};
} // namespace QMatrixClient