/* * Copyright (C) 2017-2019 Intel Corporation * * SPDX-License-Identifier: MIT * */ #pragma once #include "runtime/command_stream/command_stream_receiver_hw.h" namespace NEO { template class DeviceCommandStreamReceiver : public CommandStreamReceiverHw { typedef CommandStreamReceiverHw BaseClass; protected: DeviceCommandStreamReceiver(ExecutionEnvironment &executionEnvironment) : BaseClass(executionEnvironment) { } public: static CommandStreamReceiver *create(bool withAubDump, ExecutionEnvironment &executionEnvironment); }; } // namespace NEO