summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Config/Config.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/Common/Config/Config.cpp')
-rw-r--r--Source/Core/Common/Config/Config.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/Source/Core/Common/Config/Config.cpp b/Source/Core/Common/Config/Config.cpp
index 29004787e4..03c0aed72e 100644
--- a/Source/Core/Common/Config/Config.cpp
+++ b/Source/Core/Common/Config/Config.cpp
@@ -178,6 +178,25 @@ LayerType GetActiveLayerForConfig(const Location& config)
return LayerType::Base;
}
+std::optional<std::string> GetAsString(const Location& config)
+{
+ std::optional<std::string> result;
+ ReadLock lock(s_layers_rw_lock);
+
+ for (auto layer : SEARCH_ORDER)
+ {
+ const auto it = s_layers.find(layer);
+ if (it != s_layers.end())
+ {
+ result = it->second->Get<std::string>(config);
+ if (result.has_value())
+ break;
+ }
+ }
+
+ return result;
+}
+
ConfigChangeCallbackGuard::ConfigChangeCallbackGuard()
{
++s_callback_guards;