mirror of
https://github.com/intel/compute-runtime.git
synced 2025-11-10 05:49:51 +08:00
Change-Id: I67a6919bbbff1d30c7d6cdb257b41c87bad51e7f Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
19 lines
375 B
C++
19 lines
375 B
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/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
|