libcarla/include/carla/rpc/CommandResponse.h
2024-10-18 13:19:59 +08:00

19 lines
424 B
C++

// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
// de Barcelona (UAB).
//
// This work is licensed under the terms of the MIT license.
// For a copy, see <https://opensource.org/licenses/MIT>.
#pragma once
#include "carla/rpc/ActorId.h"
#include "carla/rpc/Response.h"
namespace carla {
namespace rpc {
using CommandResponse = Response<ActorId>;
} // namespace rpc
} // namespace carla