compute-runtime/shared/source/os_interface/linux/engine_info.h

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