LibMultiSense
LibMultiSense Documentation
Loading...
Searching...
No Matches
PollMotorInfoMessage.hh
Go to the documentation of this file.
1
39#ifndef LibMultiSense_PollMotorInfoMessage
40#define LibMultiSense_PollMotorInfoMessage
41
44#include "wire/Protocol.hh"
45
46namespace crl {
47namespace multisense {
48namespace details {
49namespace wire {
50
51class MotorPoll {
52public:
53
56
57 int32_t angleStart;
58
61
63 angleStart(0){};
64
65 MotorPoll(int32_t a) :
66 angleStart(a){};
67
68 template<class Archive>
69 void serialize(Archive& message,
70 const VersionType version)
71 {
72 (void) version;
73 message & angleStart;
74 }
75};
76
77}}}} // namespaces
78
79#endif
A generic I/O stream buffer.
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....
MotorPoll(utility::BufferStreamReader &r, VersionType v)
void serialize(Archive &message, const VersionType version)
static CRL_CONSTEXPR VersionType VERSION
static CRL_CONSTEXPR IdType ID_DATA_SYS_MOTOR_POLL
Definition Protocol.hh:230