From d1287f43964633035938f4f4d4133bb6d9da7b3e Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Mon, 10 Feb 2020 20:58:39 +0200 Subject: staging: smolblok smolblok is a replacement for the current lib/urlfilter AdBlockPlus and hostlist format filter parser. It is a library that uses plugins to provide support for different filter formats. staging/adblock: AdBlockPlus parser plugin plugins/smolblok_hostlist: hostlist format parser plugin Headers will be installed to include/smolbote/ Remove lib/urlfilter --- include/session.hpp | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 include/session.hpp (limited to 'include/session.hpp') diff --git a/include/session.hpp b/include/session.hpp deleted file mode 100644 index 0146802..0000000 --- a/include/session.hpp +++ /dev/null @@ -1,41 +0,0 @@ -/* - * This file is part of smolbote. It's copyrighted by the contributors recorded - * in the version control history of the file, available from its original - * location: https://library.iserlohn-fortress.net/aqua/smolbote.git - * - * SPDX-License-Identifier: MIT - */ - -#ifndef SMOLBOTE_SESSION_HPP -#define SMOLBOTE_SESSION_HPP - -#include -#include -#include -#include - -class [[nodiscard]] Session -{ -public: - struct WebView { - QString profile; - QString url; - QByteArray history; - }; - - struct SubWindow { - QString profile; - QVector tabs; - }; - - struct MainWindow { - QVector subwindows; - }; - - virtual ~Session() = default; - - [[nodiscard]] virtual QByteArray serialize() const = 0; - [[nodiscard]] virtual QVector get() const = 0; -}; - -#endif // SMOLBOTE_SESSION_HPP -- cgit v1.2.1