mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-23 22:53:43 +00:00
committed by
Konstantin Pastbin
parent
c9cbb64f12
commit
76ffc99abd
20
libs/platform/secure_storage_dummy.cpp
Normal file
20
libs/platform/secure_storage_dummy.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user