LeviLamina
Loading...
Searching...
No Matches
MemorySecureStorage.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/secure_storage/SecureStorage.h"
7
8class MemorySecureStorage : public ::SecureStorage {
9public:
10 // member variables
11 // NOLINTBEGIN
13 // NOLINTEND
14
15public:
16 // prevent constructor by default
17 MemorySecureStorage& operator=(MemorySecureStorage const&);
18 MemorySecureStorage(MemorySecureStorage const&);
19 MemorySecureStorage();
20
21public:
22 // virtual functions
23 // NOLINTBEGIN
24 virtual ~MemorySecureStorage() /*override*/ = default;
25
26 virtual bool add(::std::string const&, ::std::string const&) /*override*/;
27
28 virtual bool addOrUpdate(::std::string const&, ::std::string const&) /*override*/;
29
30 virtual bool remove(::std::string const&) /*override*/;
31
32 virtual bool get(::std::string const&, ::std::string&) /*override*/;
33 // NOLINTEND
34
35public:
36 // virtual function thunks
37 // NOLINTBEGIN
38
39 // NOLINTEND
40};
Definition Alias.h:14