Free Electron
test.h
1 /* Copyright (C) 2003-2021 Free Electron Organization
2  Any use of this software requires a license. If a valid license
3  was not distributed with this file, visit freeelectron.org. */
4 
5 #ifndef __MESSAGE_TESTHEADER_H__
6 #define __MESSAGE_TESTHEADER_H__
7 
8 #include "platform/Thread.h"
9 
10 #pragma pack(push, 1)
11 
12 struct Vector3
13 {
14  double x;
15  double y;
16  double z;
17 };
18 
19 struct TestRequest
20 {
21  Vector3 initPosition;
22  double zTrackGripRR;
23 };
24 
25 struct TestResponse
26 {
27  Vector3 position;
28  double nWheelRR;
29 };
30 
31 #pragma pack(pop)
32 
33 #endif // __MESSAGE_TESTHEADER_H__