mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

Related-To: NEO-3008 Change-Id: Ib9e1a241a5b47aad5e4f83443a3e85db826d13ff Signed-off-by: Piotr Fusik <piotr.fusik@intel.com>
20 lines
256 B
C++
20 lines
256 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace NEO {
|
|
|
|
struct EngineInfo {
|
|
EngineInfo() = default;
|
|
virtual ~EngineInfo() = 0;
|
|
};
|
|
|
|
inline EngineInfo::~EngineInfo() {}
|
|
|
|
} // namespace NEO
|