LeviLamina
Loading...
Searching...
No Matches
SecureStorage.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Core { class PathView; }
8// clang-format on
9
10class SecureStorage {
11public:
12 // member variables
13 // NOLINTBEGIN
15 // NOLINTEND
16
17public:
18 // prevent constructor by default
19 SecureStorage& operator=(SecureStorage const&);
20 SecureStorage(SecureStorage const&);
21 SecureStorage();
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 virtual ~SecureStorage();
27
28 virtual bool add(::std::string const& key, ::std::string const& value) = 0;
29
30 virtual bool addOrUpdate(::std::string const& key, ::std::string const& value) = 0;
31
32 virtual bool remove(::std::string const& key) = 0;
33
34 virtual bool get(::std::string const& key, ::std::string& outValue) = 0;
35 // NOLINTEND
36
37public:
38 // member functions
39 // NOLINTBEGIN
40 MCNAPI explicit SecureStorage(::Core::PathView settingsPath);
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46 MCNAPI void* $ctor(::Core::PathView settingsPath);
47 // NOLINTEND
48
49public:
50 // destructor thunk
51 // NOLINTBEGIN
52 MCNAPI void $dtor();
53 // NOLINTEND
54
55public:
56 // virtual function thunks
57 // NOLINTBEGIN
58
59 // NOLINTEND
60
61public:
62 // vftables
63 // NOLINTBEGIN
64 MCNAPI static void** $vftable();
65 // NOLINTEND
66};
Definition PathView.h:19
MCAPI void $dtor()
MCAPI void * $ctor(::Core::PathView settingsPath)
static MCAPI void ** $vftable()
MCAPI SecureStorage(::Core::PathView settingsPath)
Definition Alias.h:14