24 lines
506 B
C++
24 lines
506 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/execution_environment/execution_environment.h"
|
|
|
|
namespace NEO {
|
|
|
|
class AsyncEventsHandler;
|
|
|
|
class ClExecutionEnvironment : public ExecutionEnvironment {
|
|
public:
|
|
ClExecutionEnvironment();
|
|
AsyncEventsHandler *getAsyncEventsHandler() const;
|
|
~ClExecutionEnvironment() override;
|
|
|
|
protected:
|
|
std::unique_ptr<AsyncEventsHandler> asyncEventsHandler;
|
|
};
|
|
} // namespace NEO
|