#pragma once #include #include namespace chatterino { class LinkParser { public: explicit LinkParser(const QString &unparsedString); bool hasMatch() const; QString getCaptured() const; private: QRegularExpressionMatch match_; }; } // namespace chatterino