/
renath
/
organicmaps
Обзор
Документация
Войти
/
renath
/
organicmaps
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
libs/platform/secure_storage_qt.cpp
21 строка
483 B
Alexander Borsuk
New cpp folder structure
20 июл 2025, 22:25
20 июл 2025, 22:25
cb0af64
Код
Авторство
О чём код?
#include "platform/secure_storage.hpp" #include "platform/settings.hpp" namespace platform { void SecureStorage::Save(std::string const & key, std::string const & value) { settings::Set(key, value); } bool SecureStorage::Load(std::string const & key, std::string & value) { bool const result = settings::Get(key, value); return result && !value.empty(); } void SecureStorage::Remove(std::string const & key) { settings::Set(key, std::string()); } } // namespace platform