20 lines
340 B
C++
20 lines
340 B
C++
/*
|
|
* Copyright (C) 2019-2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "shared/source/utilities/debug_settings_reader.h"
|
|
|
|
#include <memory>
|
|
|
|
namespace NEO {
|
|
class SettingsReaderCreator {
|
|
public:
|
|
static std::unique_ptr<SettingsReader> create(const std::string ®Key);
|
|
};
|
|
} // namespace NEO
|