mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
22 lines
325 B
C++
22 lines
325 B
C++
#pragma once
|
|
|
|
#include <QRegularExpressionMatch>
|
|
#include <QString>
|
|
|
|
namespace chatterino {
|
|
|
|
class LinkParser
|
|
{
|
|
public:
|
|
explicit LinkParser(const QString &unparsedString);
|
|
|
|
bool hasMatch() const;
|
|
QString getCaptured() const;
|
|
|
|
private:
|
|
bool hasMatch_{false};
|
|
QString match_;
|
|
};
|
|
|
|
} // namespace chatterino
|