mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

Related-To: NEO-3677 Change-Id: If2e876028b765ad3ecf5f75db8755623b82955b8 Signed-off-by: Jobczyk, Lukasz <lukasz.jobczyk@intel.com>
20 lines
411 B
C++
20 lines
411 B
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "core/utilities/idlist.h"
|
|
|
|
namespace NEO {
|
|
class DeferrableDeletion : public IDNode<DeferrableDeletion> {
|
|
public:
|
|
template <typename... Args>
|
|
static DeferrableDeletion *create(Args... args);
|
|
virtual bool apply() = 0;
|
|
virtual ~DeferrableDeletion() = default;
|
|
};
|
|
} // namespace NEO
|