/* * Copyright (C) 2018-2020 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "shared/source/utilities/debug_settings_reader_creator.h" namespace NEO { std::unique_ptr SettingsReaderCreator::create(const std::string ®Key) { return std::unique_ptr(SettingsReader::create(regKey)); } }; // namespace NEO