// // Created by selim on 09.01.2022. // #ifndef AUTOCAT_GNOME_SETTINGS_H #define AUTOCAT_GNOME_SETTINGS_H #include "../models/User.h" #include namespace fs = std::filesystem; class Settings { private: std::filesystem::path _dataPath; public: static Settings instance(); Settings(); static fs::path getDataPath(); [[nodiscard]] User user() const; void setUser(const User& user); }; #endif //AUTOCAT_GNOME_SETTINGS_H