opynsim
Unofficial C++ Documentation
Loading...
Searching...
No Matches
app_setting_scope.h
Go to the documentation of this file.
1#pragma once
2
3namespace osc
4{
5 // the "scope" of an application setting value
6 //
7 // this dictates if/how/when an application setting is read from, and written to,
8 // storage
9 enum class AppSettingScope {
10
11 // the application setting value was set by either:
12 //
13 // - a readonly system-level configuration file
14 // - runtime code (that doesn't want to persist/overwrite a user-level setting)
15 //
16 // when synchronizing, the implementation won't persist settings
17 // with this scope
18 System,
19
20 // the application setting value was set by either:
21 //
22 // - a writable user-level configuration file
23 // - runtime code
24 //
25 // when synchronizing, the implementation should try to
26 // persist these settings to the user-level configuration
27 // file
28 User,
29
31 };
32}
Definition custom_decoration_generator.h:5
AppSettingScope
Definition app_setting_scope.h:9