mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 01:04:57 +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 MemoryInfo {
|
|
MemoryInfo() = default;
|
|
virtual ~MemoryInfo() = 0;
|
|
};
|
|
|
|
inline MemoryInfo::~MemoryInfo(){};
|
|
|
|
} // namespace NEO
|