aboutsummaryrefslogtreecommitdiff
path: root/include/WebPagePreview.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/WebPagePreview.hpp')
-rw-r--r--include/WebPagePreview.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/WebPagePreview.hpp b/include/WebPagePreview.hpp
new file mode 100644
index 0000000..749308c
--- /dev/null
+++ b/include/WebPagePreview.hpp
@@ -0,0 +1,15 @@
+#pragma once
+
+#include <SFML/System/String.hpp>
+#include "Text.hpp"
+
+namespace dchat
+{
+ class WebPagePreview
+ {
+ public:
+ WebPagePreview(const sf::String &title);
+
+ Text title;
+ };
+}