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 // virtual function thunks
30 // NOLINTBEGIN
31 MCNAPI bool $add(::std::string const& key, ::std::string const& value);
32
33 MCNAPI bool $addOrUpdate(::std::string const& key, ::std::string const& value);
34
35 MCNAPI bool $remove(::std::string const& key);
36
37 MCNAPI bool $get(::std::string const& key, ::std::string& outValue);
38 // NOLINTEND
39
40public:
41 // vftables
42 // NOLINTBEGIN
43 MCNAPI static void** $vftable();
44 // NOLINTEND
45};
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)
Definition SecureStorage.h:5