mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 09:14:47 +08:00
Cleaned up files: opencl/source/mem_obj/image.inl shared/offline_compiler/source/decoder/zebin_manipulator.h shared/source/aub_mem_dump/aub_alloc_dump.h shared/source/compiler_interface/intermediate_representations.h shared/source/helpers/blit_commands_helper_base.inl shared/source/utilities/debug_file_reader.h shared/source/utilities/software_tags.h shared/source/xe_hpc_core/hw_cmds_pvc.h Related-To: NEO-5548 Signed-off-by: Warchulski, Jaroslaw <jaroslaw.warchulski@intel.com>
33 lines
924 B
C++
33 lines
924 B
C++
/*
|
|
* Copyright (C) 2018-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "shared/source/utilities/debug_settings_reader.h"
|
|
|
|
#include <cstdint>
|
|
#include <map>
|
|
#include <string>
|
|
|
|
namespace NEO {
|
|
|
|
class SettingsFileReader : public SettingsReader {
|
|
public:
|
|
SettingsFileReader(const char *filePath = nullptr);
|
|
~SettingsFileReader() override;
|
|
int32_t getSetting(const char *settingName, int32_t defaultValue) override;
|
|
int64_t getSetting(const char *settingName, int64_t defaultValue) override;
|
|
bool getSetting(const char *settingName, bool defaultValue) override;
|
|
std::string getSetting(const char *settingName, const std::string &value) override;
|
|
const char *appSpecificLocation(const std::string &name) override;
|
|
|
|
protected:
|
|
void parseStream(std::istream &inputStream);
|
|
std::map<std::string, std::string> settingStringMap;
|
|
};
|
|
}; // namespace NEO
|