/
vasandi
/
AirSim
Обзор
Документация
Войти
/
vasandi
/
AirSim
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
MavLinkCom/src/MavLinkTcpServer.cpp
27 строк
775 B
Андрей Васильченко
сборка под ubuntu 26.04
08 июл 2026, 10:15
08 июл 2026, 10:15
d53c5a2
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "MavLinkTcpServer.hpp" #include "impl/MavLinkTcpServerImpl.hpp" using namespace mavlinkcom; using namespace mavlinkcom_impl; MavLinkTcpServer::MavLinkTcpServer(const std::string& local_addr, int local_port) : impl_(new MavLinkTcpServerImpl(local_addr, local_port)) { } std::shared_ptr<MavLinkConnection> MavLinkTcpServer::acceptTcp(const std::string& nodeName) { return impl_->acceptTcp(nodeName); } MavLinkTcpServer::MavLinkTcpServer() { } MavLinkTcpServer::~MavLinkTcpServer() { } //MavLinkTcpServer::MavLinkTcpServer(MavLinkTcpServer&&) = default; //MavLinkTcpServer& MavLinkTcpServer::operator=(MavLinkTcpServer&&) = default;