summaryrefslogtreecommitdiffstats
path: root/include/events/MemberEventContent.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/events/MemberEventContent.h')
-rw-r--r--include/events/MemberEventContent.h68
1 files changed, 0 insertions, 68 deletions
diff --git a/include/events/MemberEventContent.h b/include/events/MemberEventContent.h
deleted file mode 100644
index 8b7b1576..00000000
--- a/include/events/MemberEventContent.h
+++ /dev/null
@@ -1,68 +0,0 @@
-/*
- * nheko Copyright (C) 2017 Konstantinos Sideris <siderisk@auth.gr>
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#pragma once
-
-#include <QJsonValue>
-#include <QUrl>
-
-#include "Deserializable.h"
-
-namespace matrix {
-namespace events {
-enum class Membership
-{
- // The user is banned.
- Ban,
-
- // The user has been invited.
- Invite,
-
- // The user has joined.
- Join,
-
- // The user has requested to join.
- Knock,
-
- // The user has left.
- Leave,
-};
-
-/*
- * The current membership state of a user in the room.
- */
-
-class MemberEventContent
- : public Deserializable
- , public Serializable
-{
-public:
- void deserialize(const QJsonValue &data) override;
- QJsonObject serialize() const override;
-
- QUrl avatarUrl() const { return avatar_url_; };
- QString displayName() const { return display_name_; };
- Membership membershipState() const { return membership_state_; };
-
-private:
- QUrl avatar_url_;
- QString display_name_;
- Membership membership_state_;
-};
-
-} // namespace events
-} // namespace matrix