mirror-chatterino2/src/messages/link.h
2017-06-07 10:09:24 +02:00

47 lines
633 B
C++

#pragma once
#include <QString>
namespace chatterino {
namespace messages {
class Link
{
public:
enum Type {
None,
Url,
CloseCurrentSplit,
UserInfo,
UserTimeout,
UserBan,
InsertText,
ShowMessage,
};
Link();
Link(Type getType, const QString &getValue);
bool isValid() const
{
return type != None;
}
Type getType() const
{
return type;
}
const QString &getValue() const
{
return value;
}
private:
Type type;
QString value;
};
} // namespace messages
} // namespace chatterino