CARLA
LibCarla/source/carla/rpc/WalkerBoneControlOut.h
Go to the documentation of this file.
1 // Copyright (c) 2019 Computer Vision Center (CVC) at the Universitat Autonoma
2 // de Barcelona (UAB).
3 //
4 // This work is licensed under the terms of the MIT license.
5 // For a copy, see <https://opensource.org/licenses/MIT>.
6 
7 #pragma once
8 
9 #include "carla/MsgPack.h"
11 #include "carla/rpc/String.h"
12 #include "carla/rpc/Transform.h"
13 
14 #ifdef LIBCARLA_INCLUDED_FROM_UE4
18 #endif // LIBCARLA_INCLUDED_FROM_UE4
19 
20 #include <vector>
21 
22 namespace carla {
23 namespace rpc {
24 
26  public:
27 
28  WalkerBoneControlOut() = default;
29 
31  std::vector<rpc::BoneTransformDataOut> bone_transforms)
32  : bone_transforms(bone_transforms) {}
33 
34  std::vector<rpc::BoneTransformDataOut> bone_transforms;
35 
36  MSGPACK_DEFINE_ARRAY(bone_transforms);
37  };
38 
39 } // namespace rpc
40 } // namespace carla
WalkerBoneControlOut(std::vector< rpc::BoneTransformDataOut > bone_transforms)
This file contains definitions of common data structures used in traffic manager. ...
Definition: Carla.cpp:133
std::vector< rpc::BoneTransformDataOut > bone_transforms
MSGPACK_DEFINE_ARRAY(bone_transforms)