blob: fde653d3fa67826f4300f7a38c3505b7df86048d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#pragma once
#include "Text.hpp"
#include <dchat/WebPagePreview.hpp>
#include <string>
namespace dchat
{
class SfmlWebPagePreview : public WebPagePreview
{
public:
SfmlWebPagePreview(const std::string &title, const std::string &description);
Text title;
Text description;
};
}
|