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