mirror-chatterino2/messages/link.cpp

19 lines
221 B
C++
Raw Normal View History

2017-01-18 21:30:23 +01:00
#include "messages/link.h"
2017-04-14 17:47:28 +02:00
namespace chatterino {
namespace messages {
2017-01-05 16:07:20 +01:00
Link::Link()
2017-01-18 04:33:30 +01:00
: type(None)
, value(QString())
2017-01-05 20:49:33 +01:00
{
}
2017-01-11 18:52:09 +01:00
Link::Link(Type type, const QString &value)
2017-01-18 04:33:30 +01:00
: type(type)
, value(value)
2017-01-05 16:07:20 +01:00
{
}
2017-01-18 21:30:23 +01:00
}
}