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
8class NullSecureStorage : public ::SecureStorage {
9public:
10 // virtual functions
11 // NOLINTBEGIN
12 virtual ~NullSecureStorage() /*override*/ = default;
13
14 virtual bool add(::std::string const& key, ::std::string const& value) /*override*/;
15
16 virtual bool addOrUpdate(::std::string const& key, ::std::string const& value) /*override*/;
17
18 virtual bool remove(::std::string const& key) /*override*/;
19
20 virtual bool get(::std::string const& key, ::std::string& outValue) /*override*/;
21 // NOLINTEND
22
23public:
24 // virtual function thunks
25 // NOLINTBEGIN
26 MCNAPI bool $add(::std::string const& key, ::std::string const& value);
27
28 MCNAPI bool $addOrUpdate(::std::string const& key, ::std::string const& value);
29
30 MCNAPI bool $remove(::std::string const& key);
31
32 MCNAPI bool $get(::std::string const& key, ::std::string& outValue);
33
34
35 // NOLINTEND
36
37public:
38 // vftables
39 // NOLINTBEGIN
40 MCNAPI static void** $vftable();
41 // NOLINTEND
42};
Definition NullSecureStorage.h:8
static MCAPI void ** $vftable()
MCAPI bool $add(::std::string const &key, ::std::string const &value)
MCAPI bool $addOrUpdate(::std::string const &key, ::std::string const &value)
MCAPI bool $remove(::std::string const &key)
MCAPI bool $get(::std::string const &key, ::std::string &outValue)