mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 17:00:59 +08:00
Change-Id: I67a6919bbbff1d30c7d6cdb257b41c87bad51e7f Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
20 lines
340 B
C++
20 lines
340 B
C++
/*
|
|
* Copyright (C) 2018-2020 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
|