2018-12-13 13:46:32 +01:00
|
|
|
/*
|
2021-05-16 20:51:16 +02:00
|
|
|
* Copyright (C) 2019-2021 Intel Corporation
|
2018-12-13 13:46:32 +01:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/utilities/debug_settings_reader_creator.h"
|
2018-12-13 13:46:32 +01:00
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2019-09-02 12:04:22 +02:00
|
|
|
std::unique_ptr<SettingsReader> SettingsReaderCreator::create(const std::string ®Key) {
|
|
|
|
|
return std::unique_ptr<SettingsReader>(SettingsReader::create(regKey));
|
2018-12-13 13:46:32 +01:00
|
|
|
}
|
2019-03-26 11:59:46 +01:00
|
|
|
}; // namespace NEO
|