LibMultiSense
LibMultiSense Documentation
Loading...
Searching...
No Matches
RemoteHeadControlMessage.hh
Go to the documentation of this file.
1
41#ifndef LibMultiSense_RemoteHeadControlMessage
42#define LibMultiSense_RemoteHeadControlMessage
43
45#include "wire/Protocol.hh"
47// #include "MultiSense/MultisenseTypes.hh"
48
49namespace crl {
50namespace multisense {
51namespace details {
52namespace wire {
53
55public:
58
59 //
60 // Parameters representing the current remote head sync configuration
61
62 std::vector<wire::RemoteHeadSyncGroup> syncGroups;
63
64 //
65 // Constructors
66
71
72 //
73 // Serialization routine
74
75 template<class Archive>
76 void serialize(Archive& message,
77 const VersionType version)
78 {
79
80 (void) version;
81
82 message & syncGroups;
83
84 }
85};
86
87}}}} // namespaces
88
89#endif
Macros and symbols to help portability between different compiler versions.
#define CRL_CONSTEXPR
Copyright 2013-2025 Carnegie Robotics, LLC 4501 Hatfield Street, Pittsburgh, PA 15201 http://www....
std::vector< wire::RemoteHeadSyncGroup > syncGroups
void serialize(Archive &message, const VersionType version)
RemoteHeadControl(utility::BufferStreamReader &r, VersionType v)
static CRL_CONSTEXPR IdType ID_CMD_REMOTE_HEAD_CONTROL
Definition Protocol.hh:193