summary refs log tree commit diff
path: root/include/events/messages/Video.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/events/messages/Video.h')
-rw-r--r--include/events/messages/Video.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/include/events/messages/Video.h b/include/events/messages/Video.h

index 2b160bea..37056c27 100644 --- a/include/events/messages/Video.h +++ b/include/events/messages/Video.h
@@ -29,39 +29,39 @@ namespace events namespace messages { struct VideoInfo { - int h; - int w; - int size; - int duration; + int h; + int w; + int size; + int duration; - QString mimetype; - QString thumbnail_url; - ThumbnailInfo thumbnail_info; + QString mimetype; + QString thumbnail_url; + ThumbnailInfo thumbnail_info; }; class Video : public Deserializable { public: - inline QString url() const; - inline VideoInfo info() const; + inline QString url() const; + inline VideoInfo info() const; - void deserialize(const QJsonObject &object) override; + void deserialize(const QJsonObject &object) override; private: - QString url_; - VideoInfo info_; + QString url_; + VideoInfo info_; }; inline QString Video::url() const { - return url_; + return url_; } inline VideoInfo Video::info() const { - return info_; + return info_; } } // namespace messages