#include <DVSEvent.h>
|
std::uint16_t | x |
|
std::uint16_t | y |
|
std::int32_t | t |
|
bool | pol |
|
Definition at line 10 of file DVSEvent.h.
◆ DVSEvent() [1/4]
◆ DVSEvent() [2/4]
DVSEvent::DVSEvent |
( |
const DVSEvent & |
arg | ) |
|
|
inline |
◆ DVSEvent() [3/4]
DVSEvent::DVSEvent |
( |
const DVSEvent && |
arg | ) |
|
|
inline |
Moving constructor.
Definition at line 20 of file DVSEvent.h.
21 :
x(std::move(arg.
x)),
◆ DVSEvent() [4/4]
DVSEvent::DVSEvent |
( |
std::uint16_t |
x, |
|
|
std::uint16_t |
y, |
|
|
std::int32_t |
t, |
|
|
bool |
pol |
|
) |
| |
|
inline |
◆ operator!=()
bool DVSEvent::operator!= |
( |
const DVSEvent & |
rhs | ) |
const |
|
inline |
Definition at line 55 of file DVSEvent.h.
56 {
57 return !(*this == rhs);
58 }
◆ operator=() [1/2]
Move Assignement operator.
Definition at line 41 of file DVSEvent.h.
42 {
43 x = std::move(other.
x);
44 y = std::move(other.
y);
45 t = std::move(other.
t);
46 pol = std::move(other.
pol);
47 return *this;
48 }
References pol, t, x, and y.
◆ operator=() [2/2]
Assignement operator.
Definition at line 31 of file DVSEvent.h.
32 {
37 return *this;
38 }
References pol, t, x, and y.
◆ operator==()
bool DVSEvent::operator== |
( |
const DVSEvent & |
rhs | ) |
const |
|
inline |
Definition at line 50 of file DVSEvent.h.
51 {
52 return (
x == rhs.
x) && (
y == rhs.
y) && (
t == rhs.
t) && (
pol == rhs.
pol);
53 }
References pol, t, x, and y.
◆ pol
std::uint16_t DVSEvent::x |
std::uint16_t DVSEvent::y |
The documentation for this struct was generated from the following file:
- Unreal/Agrarsense/Source/Agrarsense/Sensor/Camera/DVSEvent.h