mirror-chatterino2/src/providers/LinkResolver.hpp

18 lines
264 B
C++
Raw Normal View History

2018-08-24 11:56:42 +02:00
#pragma once
#include <QString>
#include <functional>
namespace chatterino {
2018-08-25 20:38:14 +02:00
class LinkResolver
2018-08-24 11:56:42 +02:00
{
public:
2018-08-25 20:38:14 +02:00
static void getLinkInfo(const QString url,
2018-08-24 11:56:42 +02:00
std::function<void(QString)> callback);
private:
};
} // namespace chatterino