Files
compute-runtime/unit_tests/os_interface/windows/registry_reader_tests.h
Jobczyk, Lukasz 10795c716f Move DebugSettingsReader to a core dir
Related-To: NEO-3677

Change-Id: I3374abde6717be20c064ec6d65c0751a783f5138
Signed-off-by: Jobczyk, Lukasz <lukasz.jobczyk@intel.com>
2019-08-29 13:49:40 +02:00

24 lines
591 B
C++

/*
* Copyright (C) 2018-2019 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "core/os_interface/windows/debug_registry_reader.h"
namespace NEO {
class TestedRegistryReader : public RegistryReader {
public:
TestedRegistryReader(bool userScope) : RegistryReader(userScope){};
TestedRegistryReader(std::string regKey) : RegistryReader(regKey){};
HKEY getHkeyType() const {
return igdrclHkeyType;
}
using RegistryReader::getSetting;
const char *getRegKey() const {
return registryReadRootKey.c_str();
}
};
} // namespace NEO