DESERT 4.0.0
uwtracker-packet.h
Go to the documentation of this file.
1//
2// Copyright (c) 2014 Regents of the SIGNET lab, University of Padova.
3// All rights reserved.
4//
5// Redistribution and use in source and binary forms, with or without
6// modification, are permitted provided that the following conditions
7// are met:
8// 1. Redistributions of source code must retain the above copyright
9// notice, this list of conditions and the following disclaimer.
10// 2. Redistributions in binary form must reproduce the above copyright
11// notice, this list of conditions and the following disclaimer in the
12// documentation and/or other materials provided with the distribution.
13// 3. Neither the name of the University of Padova (SIGNET lab) nor the
14// names of its contributors may be used to endorse or promote products
15// derived from this software without specific prior written permission.
16//
17// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19// TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
21// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
24// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
25// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
26// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
27// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28//
29
42#ifndef UWTRACKER_HDR_H
43#define UWTRACKER_HDR_H
44
45extern packet_t PT_UWTRACK;
50typedef struct hdr_uwTracker {
51 float timestamp_;
52 float x_;
53 float y_;
54 float z_;
55 float speed_;
57 static int offset_;
62 inline static int &
64 {
65 return offset_;
66 }
70 inline static struct hdr_uwTracker *
71 access(const Packet *p)
72 {
73 return (struct hdr_uwTracker *) p->access(offset_);
74 }
78 inline float &
80 {
81 return timestamp_;
82 }
83
87 inline float &
88 x()
89 {
90 return x_;
91 }
92
96 inline float &
97 y()
98 {
99 return y_;
100 }
101
105 inline float &
107 {
108 return z_;
109 }
110
114 inline float &
116 {
117 return speed_;
118 }
120
121#endif // UWROV_MODULE_H
Definition uwtracker-packet.h:50
float z_
Definition uwtracker-packet.h:54
float & timestamp()
Definition uwtracker-packet.h:79
float & speed()
Definition uwtracker-packet.h:115
float y_
Definition uwtracker-packet.h:53
float & x()
Definition uwtracker-packet.h:88
float & z()
Definition uwtracker-packet.h:106
float & y()
Definition uwtracker-packet.h:97
float timestamp_
Definition uwtracker-packet.h:51
float speed_
Definition uwtracker-packet.h:55
static struct hdr_uwTracker * access(const Packet *p)
Definition uwtracker-packet.h:71
static int & offset()
Definition uwtracker-packet.h:63
static int offset_
Definition uwtracker-packet.h:57
float x_
Definition uwtracker-packet.h:52
packet_t PT_UWTRACK