diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2019-11-03 00:18:10 +0200 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2019-11-03 00:20:41 +0200 |
commit | f3a4607d6a722a862af0eb9747a15dcdf624b6fb (patch) | |
tree | 9885709cdff55a865be6c03c591a9757680b0396 /include | |
parent | Change spdlog from makedepends to depends (diff) | |
download | smolbote-f3a4607d6a722a862af0eb9747a15dcdf624b6fb.tar.xz |
Drop boost dependency
- wrote not-invented-here config file parser and conf class
- spent obscene amount of time plugging in said conf class
Diffstat (limited to 'include')
-rw-r--r-- | include/browserinterface.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/browserinterface.h b/include/browserinterface.h index ef89456..4cdc63b 100644 --- a/include/browserinterface.h +++ b/include/browserinterface.h @@ -14,11 +14,6 @@ class BrowserInterface public: virtual ~BrowserInterface() = default; - // configuration access - virtual const QStringList configurationOptions() const = 0; - virtual const QString configuration(const QString &key) const = 0; - virtual void setConfiguration(const QString &key, const QString &value) = 0; - // profile access virtual const QList<QPair<QString, Profile *>> profileList() const = 0; virtual QPair<QString, Profile *> loadProfile(const QString &id, bool isOffTheRecord = true) = 0; |