// Copyright (c) 2022 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 . #pragma once #include namespace carla { namespace multigpu { enum MultiGPUCommand : uint32_t { SEND_FRAME = 0, LOAD_MAP, GET_TOKEN, ENABLE_ROS, DISABLE_ROS, IS_ENABLED_ROS, YOU_ALIVE }; struct CommandHeader { MultiGPUCommand id; uint32_t size; }; } // namespace multigpu } // namespace carla