/* * 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://neueland.iserlohn-fortress.net/gitea/aqua/smolbote * * SPDX-License-Identifier: MIT */ #pragma once class Profile; class BrowserInterface { public: virtual ~BrowserInterface() = default; // profile access virtual const QList> profileList() const = 0; virtual QPair loadProfile(const QString &id, bool isOffTheRecord = true) = 0; virtual void removeProfile(const QString &id) = 0; };