mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
* Fix include path for magic enum * Update .clang-format to ensure magic enum is caught as a third party library
39 lines
866 B
C++
39 lines
866 B
C++
#pragma once
|
|
|
|
#include <magic_enum/magic_enum.hpp>
|
|
#include <QJsonObject>
|
|
#include <QString>
|
|
|
|
namespace chatterino {
|
|
|
|
struct PubSubCommunityPointsChannelV1Message {
|
|
enum class Type {
|
|
RewardRedeemed,
|
|
|
|
INVALID,
|
|
};
|
|
|
|
QString typeString;
|
|
Type type = Type::INVALID;
|
|
|
|
QJsonObject data;
|
|
|
|
PubSubCommunityPointsChannelV1Message(const QJsonObject &root);
|
|
};
|
|
|
|
} // namespace chatterino
|
|
|
|
template <>
|
|
constexpr magic_enum::customize::customize_t magic_enum::customize::enum_name<
|
|
chatterino::PubSubCommunityPointsChannelV1Message::Type>(
|
|
chatterino::PubSubCommunityPointsChannelV1Message::Type value) noexcept
|
|
{
|
|
switch (value)
|
|
{
|
|
case chatterino::PubSubCommunityPointsChannelV1Message::Type::
|
|
RewardRedeemed:
|
|
return "reward-redeemed";
|
|
default:
|
|
return default_tag;
|
|
}
|
|
}
|