mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-07 12:42:54 +08:00
Reorganization directory structure [3/n]
Change-Id: If3dfa3f6007f8810a6a1ae1a4f0c7da38544648d
This commit is contained in:
18
shared/source/memory_manager/deferrable_deletion.h
Normal file
18
shared/source/memory_manager/deferrable_deletion.h
Normal file
@@ -0,0 +1,18 @@
|
||||
/*
|
||||
* Copyright (C) 2017-2020 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#include "utilities/idlist.h"
|
||||
|
||||
namespace NEO {
|
||||
class DeferrableDeletion : public IDNode<DeferrableDeletion> {
|
||||
public:
|
||||
template <typename... Args>
|
||||
static DeferrableDeletion *create(Args... args);
|
||||
virtual bool apply() = 0;
|
||||
};
|
||||
} // namespace NEO
|
||||
Reference in New Issue
Block a user