/* * Copyright 2020, Jaidyn Levesque * All rights reserved. Distributed under the terms of the MIT license. */ #ifndef PREFS_H #define PREFS_H #include #include #include class Preferences { public: Preferences(); Preferences(Preferences*); void Load(); void Save(); bool verbose; bool daemon; BString outDir; int64 updateInterval; BString configDir; BString cacheDir; bool will_save; bool updateFeeds; }; #endif // PREFS_H