LeviLamina
Loading...
Searching...
No Matches
SimpleStorage.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/certificates/identity/ISettingStorageStrategy.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Json { class Value; }
11// clang-format on
12
13namespace Identity::Strategies {
14
16public:
17 // member variables
18 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 SimpleStorage& operator=(SimpleStorage const&);
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 // vIndex: 1
33 virtual ::Json::Value clientConfig() const /*override*/;
34
35 // vIndex: 3
36 virtual bool hasDemoSignedInEver() const /*override*/;
37
38 // vIndex: 2
39 virtual void hasDemoSignedInEver(bool) const /*override*/;
40
41 // vIndex: 5
42 virtual bool hasSignedInEver() const /*override*/;
43
44 // vIndex: 4
45 virtual void hasSignedInEver(bool) const /*override*/;
46
47 // vIndex: 6
48 virtual int64 maxSignInExpiration() const /*override*/;
49
50 // vIndex: 7
51 virtual int64 maxGraphExpiration() const /*override*/;
52
53 // vIndex: 9
54 virtual bool rememberMe() const /*override*/;
55
56 // vIndex: 8
57 virtual void rememberMe(bool) const /*override*/;
58
59 // vIndex: 11
60 virtual bool signedIn() const /*override*/;
61
62 // vIndex: 10
63 virtual void signedIn(bool) const /*override*/;
64
65 // vIndex: 12
66 virtual int64 tokenRefreshThreshold() const /*override*/;
67
68 // vIndex: 14
69 virtual ::std::string userHint() const /*override*/;
70
71 // vIndex: 13
72 virtual void userHint(::std::string const&) const /*override*/;
73
74 // vIndex: 0
75 virtual ~SimpleStorage() /*override*/ = default;
76 // NOLINTEND
77
78public:
79 // destructor thunk
80 // NOLINTBEGIN
81
82 // NOLINTEND
83
84public:
85 // virtual function thunks
86 // NOLINTBEGIN
87
88 // NOLINTEND
89};
90
91} // namespace Identity::Strategies
Definition SimpleStorage.h:15
Definition ISettingStorageStrategy.h:12
Definition Alias.h:14