Chatterino
LinkResolver.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include <QString>
4 #include <functional>
5 
6 #include "messages/Image.hpp"
7 #include "messages/Link.hpp"
8 
9 namespace chatterino {
10 
12 {
13 public:
14  static void getLinkInfo(
15  const QString url, QObject *caller,
16  std::function<void(QString, Link, ImagePtr)> callback);
17 };
18 
19 } // namespace chatterino
Definition: Application.cpp:48
std::shared_ptr< Image > ImagePtr
Definition: ModerationAction.hpp:14