/
vasandi
/
AirSim
Обзор
Документация
Войти
/
vasandi
/
AirSim
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
AirLib/include/api/ApiServerBase.hpp
25 строк
466 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. #ifndef air_ApiServerBase_hpp #define air_ApiServerBase_hpp #include <functional> #include "common/Common.hpp" namespace msr { namespace airlib { class ApiServerBase { public: virtual void start(bool block, std::size_t thread_count) = 0; virtual void stop() = 0; virtual ~ApiServerBase() = default; }; } } //namespace #endif