lib
xspublic
xstypes
xsushortvector.h
Go to the documentation of this file.
1
2
// Copyright (c) 2003-2021 Xsens Technologies B.V. or subsidiaries worldwide.
3
// All rights reserved.
4
//
5
// Redistribution and use in source and binary forms, with or without modification,
6
// are permitted provided that the following conditions are met:
7
//
8
// 1. Redistributions of source code must retain the above copyright notice,
9
// this list of conditions, and the following disclaimer.
10
//
11
// 2. Redistributions in binary form must reproduce the above copyright notice,
12
// this list of conditions, and the following disclaimer in the documentation
13
// and/or other materials provided with the distribution.
14
//
15
// 3. Neither the names of the copyright holders nor the names of their contributors
16
// may be used to endorse or promote products derived from this software without
17
// specific prior written permission.
18
//
19
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
20
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
22
// THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
// SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
24
// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25
// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY OR
26
// TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.THE LAWS OF THE NETHERLANDS
28
// SHALL BE EXCLUSIVELY APPLICABLE AND ANY DISPUTES SHALL BE FINALLY SETTLED UNDER THE RULES
29
// OF ARBITRATION OF THE INTERNATIONAL CHAMBER OF COMMERCE IN THE HAGUE BY ONE OR MORE
30
// ARBITRATORS APPOINTED IN ACCORDANCE WITH SAID RULES.
31
//
32
33
34
// Copyright (c) 2003-2021 Xsens Technologies B.V. or subsidiaries worldwide.
35
// All rights reserved.
36
//
37
// Redistribution and use in source and binary forms, with or without modification,
38
// are permitted provided that the following conditions are met:
39
//
40
// 1. Redistributions of source code must retain the above copyright notice,
41
// this list of conditions, and the following disclaimer.
42
//
43
// 2. Redistributions in binary form must reproduce the above copyright notice,
44
// this list of conditions, and the following disclaimer in the documentation
45
// and/or other materials provided with the distribution.
46
//
47
// 3. Neither the names of the copyright holders nor the names of their contributors
48
// may be used to endorse or promote products derived from this software without
49
// specific prior written permission.
50
//
51
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
52
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
53
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
54
// THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
55
// SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
56
// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
57
// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY OR
58
// TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
59
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.THE LAWS OF THE NETHERLANDS
60
// SHALL BE EXCLUSIVELY APPLICABLE AND ANY DISPUTES SHALL BE FINALLY SETTLED UNDER THE RULES
61
// OF ARBITRATION OF THE INTERNATIONAL CHAMBER OF COMMERCE IN THE HAGUE BY ONE OR MORE
62
// ARBITRATORS APPOINTED IN ACCORDANCE WITH SAID RULES.
63
//
64
65
#ifndef XSUSHORTVECTOR_H
66
#define XSUSHORTVECTOR_H
67
68
#ifdef __cplusplus
69
#include "
xstypedefs.h
"
70
#endif
71
#ifndef __cplusplus
72
#define XSUSHORTVECTOR_INITIALIZER {{0,0,0}}
73
#endif
74
75
77
struct
XsUShortVector
78
{
79
#ifdef __cplusplus
80
inline
XsUShortVector
()
82
{
83
m_data
[0] = 0;
84
m_data
[1] = 0;
85
m_data
[2] = 0;
86
}
87
89
inline
XsUShortVector
(
unsigned
short
v1,
unsigned
short
v2,
unsigned
short
v3)
90
{
91
m_data
[0] = v1;
92
m_data
[1] = v2;
93
m_data
[2] = v3;
94
}
95
97
inline
explicit
XsUShortVector
(
const
unsigned
short
* a)
98
{
99
m_data
[0] = a[0];
100
m_data
[1] = a[1];
101
m_data
[2] = a[2];
102
}
103
105
inline
XsUShortVector
(
const
XsUShortVector
& other)
106
{
107
m_data
[0] = other.
m_data
[0];
108
m_data
[1] = other.
m_data
[1];
109
m_data
[2] = other.
m_data
[2];
110
}
111
113
inline
XsUShortVector
& operator = (
const
XsUShortVector
& other)
114
{
115
if
(
this
!= &other)
116
{
117
m_data
[0] = other.
m_data
[0];
118
m_data
[1] = other.
m_data
[1];
119
m_data
[2] = other.
m_data
[2];
120
}
121
return
*
this
;
122
}
123
125
inline
bool
operator ==
(
const
XsUShortVector
& other)
const
126
{
127
return
m_data
[0] == other.
m_data
[0] &&
128
m_data
[1] == other.
m_data
[1] &&
129
m_data
[2] == other.
m_data
[2];
130
}
131
133
inline
XsSize
size()
const
134
{
135
return
3;
136
}
137
139
inline
unsigned
short
at(
int
index)
const
140
{
141
return
m_data
[index];
142
}
143
145
inline
unsigned
short
operator[](
XsSize
index)
const
146
{
147
assert(index < 3);
148
return
m_data
[index];
149
}
150
152
inline
unsigned
short
& operator[](
XsSize
index)
153
{
154
assert(index < 3);
155
return
m_data
[index];
156
}
157
159
inline
unsigned
short
const
*
data
()
const
160
{
161
return
m_data
;
162
}
163
private
:
164
#endif
165
166
unsigned
short
m_data
[3];
167
};
168
169
typedef
struct
XsUShortVector
XsUShortVector
;
170
171
#endif
XsUShortVector
struct XsUShortVector XsUShortVector
Definition:
xsushortvector.h:169
xstypedefs.h
data
data
operator==
bool operator==(const XsFilterProfile &lhs, const XsFilterProfile &rhs)
Returns true if lhs has the same type as rhs.
Definition:
scenariomatchpred.h:81
XsUShortVector
A vector containing 3 short values.
Definition:
xsushortvector.h:77
XsSize
size_t XsSize
XsSize must be unsigned number!
Definition:
xstypedefs.h:74
XsUShortVector::m_data
unsigned short m_data[3]
vector component storage
Definition:
xsushortvector.h:166
xsens_mti_driver
Author(s):
autogenerated on Sun Sep 3 2023 02:43:20