LeviLamina
Loading...
Searching...
No Matches
NullSecureStorage.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
9public:
10 // virtual functions
11 // NOLINTBEGIN
12 // vIndex: 0
13 virtual ~NullSecureStorage() /*override*/ = default;
14
15 // vIndex: 1
16 virtual bool add(::std::string const& key, ::std::string const& value) /*override*/;
17
18 // vIndex: 2
19 virtual bool addOrUpdate(::std::string const& key, ::std::string const& value) /*override*/;
20
21 // vIndex: 3
22 virtual bool remove(::std::string const& key) /*override*/;
23
24 // vIndex: 4
25 virtual bool get(::std::string const& key, ::std::string& outValue) /*override*/;
26 // NOLINTEND
27
28public:
29 // destructor thunk
30 // NOLINTBEGIN
31
32 // NOLINTEND
33
34public:
35 // virtual function thunks
36 // NOLINTBEGIN
37 MCFOLD bool $add(::std::string const& key, ::std::string const& value);
38
39 MCFOLD bool $addOrUpdate(::std::string const& key, ::std::string const& value);
40
41 MCFOLD bool $remove(::std::string const& key);
42
43 MCFOLD bool $get(::std::string const& key, ::std::string& outValue);
44 // NOLINTEND
45
46public:
47 // vftables
48 // NOLINTBEGIN
49 MCAPI static void** $vftable();
50 // NOLINTEND
51};
Definition NullSecureStorage.h:8
Definition SecureStorage.h:5