mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 17:00:59 +08:00
20 lines
261 B
C++
20 lines
261 B
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace NEO {
|
|
|
|
struct EngineInfo {
|
|
EngineInfo() = default;
|
|
virtual ~EngineInfo() = 0;
|
|
};
|
|
|
|
inline EngineInfo::~EngineInfo() {}
|
|
|
|
} // namespace NEO
|