2018-12-13 20:46:32 +08:00
|
|
|
/*
|
2022-05-18 03:04:23 +08:00
|
|
|
* Copyright (C) 2019-2022 Intel Corporation
|
2018-12-13 20:46:32 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-02-24 05:44:01 +08:00
|
|
|
#include "shared/source/utilities/debug_settings_reader.h"
|
2019-02-27 18:39:32 +08:00
|
|
|
|
2018-12-13 20:46:32 +08:00
|
|
|
#include <memory>
|
2022-05-18 03:04:23 +08:00
|
|
|
#include <string>
|
2018-12-13 20:46:32 +08:00
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2018-12-13 20:46:32 +08:00
|
|
|
class SettingsReaderCreator {
|
|
|
|
public:
|
2019-09-02 18:04:22 +08:00
|
|
|
static std::unique_ptr<SettingsReader> create(const std::string ®Key);
|
2018-12-13 20:46:32 +08:00
|
|
|
};
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|