compute-runtime/runtime/dll/create_tbx_sockets.cpp

17 lines
257 B
C++
Raw Normal View History

/*
* Copyright (C) 2018-2019 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "runtime/tbx/tbx_sockets_imp.h"
using namespace NEO;
namespace NEO {
TbxSockets *TbxSockets::create() {
return new TbxSocketsImp;
}
} // namespace NEO