mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
21 lines
314 B
C++
21 lines
314 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:
|
|
QRegularExpressionMatch match_;
|
|
};
|
|
|
|
} // namespace chatterino
|