aboutsummaryrefslogtreecommitdiff
path: root/src/webengine/webengineprofile.h
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2017-01-12 19:57:00 +0100
committerAqua-sama <aqua@iserlohn-fortress.net>2017-01-12 19:57:00 +0100
commit8c30d0d5f0ab93c44b6957040fd0a2b3b7749faa (patch)
tree94500815f9734492c3c61d97aca1b0c4bbcddcd3 /src/webengine/webengineprofile.h
parentMinor bugfixes (diff)
downloadsmolbote-8c30d0d5f0ab93c44b6957040fd0a2b3b7749faa.tar.xz
Profile config loading and saving
Diffstat (limited to 'src/webengine/webengineprofile.h')
-rw-r--r--src/webengine/webengineprofile.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/webengine/webengineprofile.h b/src/webengine/webengineprofile.h
new file mode 100644
index 0000000..ca2fd08
--- /dev/null
+++ b/src/webengine/webengineprofile.h
@@ -0,0 +1,20 @@
+#ifndef WEBENGINEPROFILE_H
+#define WEBENGINEPROFILE_H
+
+#include <QWebEngineProfile>
+
+class WebEngineProfile : public QWebEngineProfile
+{
+ Q_OBJECT
+public:
+ WebEngineProfile(QObject *parent = Q_NULLPTR);
+ WebEngineProfile(const QString &storageName, QObject *parent = Q_NULLPTR);
+
+ ~WebEngineProfile();
+
+signals:
+
+public slots:
+};
+
+#endif // WEBENGINEPROFILE_H