mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
19 lines
221 B
C++
19 lines
221 B
C++
#include "messages/link.h"
|
|
|
|
namespace chatterino {
|
|
namespace messages {
|
|
|
|
Link::Link()
|
|
: type(None)
|
|
, value(QString())
|
|
{
|
|
}
|
|
|
|
Link::Link(Type type, const QString &value)
|
|
: type(type)
|
|
, value(value)
|
|
{
|
|
}
|
|
}
|
|
}
|