LeviLamina
Loading...
Searching...
No Matches
SecureStorage.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // member variables
8 // NOLINTBEGIN
10 // NOLINTEND
11
12public:
13 // prevent constructor by default
14 SecureStorage& operator=(SecureStorage const&);
17
18public:
19 // virtual functions
20 // NOLINTBEGIN
21 // vIndex: 0
22 virtual ~SecureStorage();
23
24 // vIndex: 1
25 virtual bool add(::std::string const&, ::std::string const&) = 0;
26
27 // vIndex: 2
28 virtual bool addOrUpdate(::std::string const&, ::std::string const&) = 0;
29
30 // vIndex: 3
31 virtual bool remove(::std::string const&) = 0;
32
33 // vIndex: 4
34 virtual bool get(::std::string const&, ::std::string&) = 0;
35 // NOLINTEND
36
37public:
38 // destructor thunk
39 // NOLINTBEGIN
40 MCAPI void $dtor();
41 // NOLINTEND
42
43public:
44 // virtual function thunks
45 // NOLINTBEGIN
46
47 // NOLINTEND
48
49public:
50 // vftables
51 // NOLINTBEGIN
52 MCAPI static void** $vftable();
53 // NOLINTEND
54};
Definition SecureStorage.h:5
Definition Alias.h:14