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