2018-01-19 17:00:51 +08:00
|
|
|
/*
|
2021-10-23 02:54:54 +08:00
|
|
|
* Copyright (C) 2018-2021 Intel Corporation
|
2018-01-19 17:00:51 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2018-01-19 17:00:51 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-10-16 18:10:52 +08:00
|
|
|
#include "shared/source/tbx/tbx_sockets_imp.h"
|
2018-01-19 17:00:51 +08:00
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
using namespace NEO;
|
2018-01-19 17:00:51 +08:00
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2018-01-19 17:00:51 +08:00
|
|
|
TbxSockets *TbxSockets::create() {
|
|
|
|
return new TbxSocketsImp;
|
|
|
|
}
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|