Files
compute-runtime/shared/source/utilities/debug_settings_reader_creator.h
Daniel Chabrowski 7463e1970b Cleanup headers
Make TUs and headers self-contained, remove unused headers

Signed-off-by: Daniel Chabrowski <daniel.chabrowski@intel.com>
2022-05-18 11:42:06 +02:00

21 lines
358 B
C++

/*
* Copyright (C) 2019-2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "shared/source/utilities/debug_settings_reader.h"
#include <memory>
#include <string>
namespace NEO {
class SettingsReaderCreator {
public:
static std::unique_ptr<SettingsReader> create(const std::string &regKey);
};
} // namespace NEO