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