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