opynsim
Unofficial C++ Documentation
Loading...
Searching...
No Matches
liboscar
platform
app_setting_scope.h
Go to the documentation of this file.
1
#pragma once
2
3
namespace
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
30
NUM_OPTIONS
,
31
};
32
}
osc
Definition
custom_decoration_generator.h:5
osc::AppSettingScope
AppSettingScope
Definition
app_setting_scope.h:9
osc::AppSettingScope::User
@ User
osc::AppSettingScope::System
@ System
osc::BlendingEquation::NUM_OPTIONS
@ NUM_OPTIONS
Generated by
1.9.8