1
0
Fork 0
mirror of https://github.com/Chatterino/chatterino2.git synced 2024-11-21 22:24:07 +01:00
mirror-chatterino2/link.cpp
2017-01-18 04:33:30 +01:00

13 lines
161 B
C++

#include "link.h"
Link::Link()
: type(None)
, value(QString())
{
}
Link::Link(Type type, const QString &value)
: type(type)
, value(value)
{
}