/* * Copyright (C) 2017-2020 Intel Corporation * * SPDX-License-Identifier: MIT * */ #pragma once #include "opencl/source/device/driver_info.h" #include #include namespace NEO { class SettingsReader; class DriverInfoWindows : public DriverInfo { public: std::string getDeviceName(std::string defaultName); std::string getVersion(std::string defaultVersion); void setRegistryReader(SettingsReader *reader); std::string trimRegistryKey(std::string key); protected: std::unique_ptr registryReader; }; } // namespace NEO